Zum Inhalt springen
GET /v1/current

Latest short interest with change vs prior period

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/shortinterest-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/shortinterest-api/v1/current" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/shortinterest-api/v1/current", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/shortinterest-api/v1/current");
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/current",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "trend": "rising",
        "market": "US",
        "source": "Nasdaq",
        "symbol": "AAPL",
        "change_pct": 12.32,
        "shares_short": 155886024,
        "change_shares": 17103306,
        "days_to_cover": 3.3841,
        "settlement_date": "05/29/2026",
        "avg_daily_volume": 46064146,
        "prior_shares_short": 138782718,
        "prior_settlement_date": "05/15/2026"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:20.683Z",
        "request_id": "4e7419af-3bff-4c36-9c34-0bc796a9fceb"
    },
    "status": "ok",
    "message": "Short interest retrieved successfully",
    "success": true
}