Naar de inhoud
GET /v1/divergence

Smart-money-minus-retail long-share gap with a contrarian read

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/smartmoney-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "long_pct_gap = top-trader long-share minus crowd long-share (positive = smart money more long than the crowd). A large positive gap is a bullish tilt; a large negative gap (crowd over-long) is a contrarian bearish tilt. Threshold +/-8 percentage points. Not financial advice.",
        "read": "The crowd is notably more long than the top traders — a contrarian bearish tilt (retail euphoria the big accounts are fading).",
        "period": "1h",
        "signal": "crowd_over_long",
        "source": "Binance USDS-M futures",
        "symbol": "ETHUSDT",
        "ratio_gap": -0.6704,
        "long_pct_gap": -10.21,
        "retail_long_pct": 65.75,
        "smart_money_long_pct": 55.54
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:27.594Z",
        "request_id": "668c2ac8-7574-40b3-bf19-a1f896be3ed2"
    },
    "status": "ok",
    "message": "Divergence retrieved successfully",
    "success": true
}