/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/smartmoney-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/smartmoney-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/smartmoney-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/smartmoney-api/v1/meta",
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": {
"note": "symbol is a USDT perpetual (BTCUSDT) or a base (BTC, default quote USDT). period is 5m-1d (default 5m). history limit is 1-500 (default 48). Read fresh per call, nothing cached.",
"source": "Binance USDS-M futures data (globalLongShortAccountRatio, topLongShortAccountRatio, topLongShortPositionRatio), live",
"periods": [
"5m",
"15m",
"30m",
"1h",
"2h",
"4h",
"6h",
"12h",
"1d"
],
"service": "smartmoney-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/history": "Time-series of all three cohorts and the gap (symbol=BTCUSDT, period=1h, limit=48).",
"GET /v1/divergence": "Smart-money-minus-retail long-share gap with a contrarian read (symbol=BTCUSDT).",
"GET /v1/positioning": "Three positioning cohorts side by side with the divergence (symbol=BTCUSDT, period=5m)."
},
"description": "Crypto smart-money vs retail positioning — how Binance's top traders (top ~20% of accounts by margin) are positioned versus the retail crowd, and the divergence between them, live (no key, nothing stored). positioning returns the long/short ratio and long-share of three cohorts side by side. divergence returns the smart-money-minus-retail gap with a contrarian read. history returns the time-series. The positioning-divergence / smart-money-versus-retail cut — distinct from the single-cohort long/short-ratio feed, funding-rate, open-interest and price APIs. It tells you who is on which side.",
"upstream_status": "ok",
"btc_long_pct_gap": -5.41
},
"meta": {
"timestamp": "2026-06-12T10:35:28.285Z",
"request_id": "7b06c4e0-bf9e-480a-9b1c-d196f8d093d5"
},
"status": "ok",
"message": "Meta",
"success": true
}