Ir al contenido
GET /v1/divergence

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

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/smartmoney-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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