/v1/breadth
Market-wide breadth, advance/decline & regime
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/cryptobreadth-api/v1/breadth" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptobreadth-api/v1/breadth", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptobreadth-api/v1/breadth");
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/cryptobreadth-api/v1/breadth",
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": "Breadth measures how many coins participate in the market's move. pct_above_ma200 is the share trading above their 200-day average — high = a broad bull market, low = a broad bear. advance_decline_ratio above 1 means more coins up than down today. Default basket is ~30 liquid majors; pass coins=BTC,ETH,... to customise.",
"regime": "broad weakness (most coins in downtrends)",
"source": "Binance",
"advancers": 3,
"decliners": 2,
"coins_scanned": 5,
"pct_above_ma20": 0,
"pct_above_ma50": 0,
"pct_above_ma200": 0,
"avg_change_24h_pct": 0.05,
"advance_decline_ratio": 1.5,
"median_change_24h_pct": 0.1
},
"meta": {
"timestamp": "2026-06-12T10:35:36.974Z",
"request_id": "cc3ddccd-5d64-428f-b975-d91c22b30dd0"
},
"status": "ok",
"message": "Breadth retrieved successfully",
"success": true
}