Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/shortinterest-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/shortinterest-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/shortinterest-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/shortinterest-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/shortinterest-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "Look up a stock by its ticker (symbol=AAPL). US short interest is reported around the 15th and the end of each month; share counts are numbers and days-to-cover is shares-short over average daily volume.",
        "source": "Nasdaq public short-interest feed (api.nasdaq.com/api/quote/{symbol}/short-interest, live)",
        "service": "shortinterest-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/current": "Latest short interest with change from the prior period (symbol=AAPL).",
            "GET /v1/history": "Full settlement-by-settlement short-interest timeline (symbol=AAPL)."
        },
        "description": "Live short-interest data for US stocks from Nasdaq — the 'how heavily is it shorted, and is a squeeze building' view. current = the latest short-interest reading (shares sold short, average daily volume, days-to-cover) with the change from the prior period; history = the full settlement-by-settlement timeline. Live, no key, nothing stored. Days-to-cover (short interest divided by average daily volume) is the headline squeeze metric. Distinct from the quote, movers, insider and analyst APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:20.855Z",
        "request_id": "cd66441a-7dc3-4be9-871c-4858077b7b13"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}