Aller au contenu
GET /v1/ratio

Latest long/short ratio for a contract

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/longshortratio-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}