Zum Inhalt springen
GET /v1/ratio

Latest long/short ratio for a contract

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "period": "1h",
        "symbol": "BTCUSDT",
        "long_pct": 62.58,
        "short_pct": 37.42,
        "timestamp": "2026-06-09T03:00:00.000Z",
        "long_ratio": 0.6258,
        "short_ratio": 0.3742,
        "long_short_ratio": 1.6724
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:42.172Z",
        "request_id": "37752e22-d188-4f3b-95e6-5addc37ce333"
    },
    "status": "ok",
    "message": "Long/short ratio retrieved successfully",
    "success": true
}