/v1/ratio
Latest long/short ratio for a contract
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}