/v1/board
Every economy's CLI, change and business-cycle phase, ranked
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/leadingindicators-api/v1/board" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/leadingindicators-api/v1/board", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/leadingindicators-api/v1/board");
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/leadingindicators-api/v1/board",
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": "The OECD amplitude-adjusted Composite Leading Indicator for every tracked economy (and aggregates unless countries_only=true), ranked. CLI oscillates around 100; above 100 = above long-term trend, and the direction gives momentum. phase is the four-quadrant business-cycle clock (Expansion/Downturn/Slowdown/Recovery). The CLI leads GDP by ~6-9 months. Monthly data, cached a few hours.",
"board": [
{
"cli": 103.82,
"code": "BRA",
"name": "Brazil",
"phase": "Expansion",
"change": 0.002,
"period": "2026-05",
"vs_trend": "above",
"direction": "rising",
"phase_note": "above long-term trend and rising — activity accelerating",
"is_aggregate": false,
"previous_cli": 103.819
},
{
"cli": 103.187,
"code": "MEX",
"name": "Mexico",
"phase": "Expansion",
"change": 0.179,
"period": "2026-05",
"vs_trend": "above",
"direction": "rising",
"phase_note": "above long-term trend and rising — activity accelerating",
"is_aggregate": false,
"previous_cli": 103.008
},
{
"cli": 102.601,
"code": "KOR",
"name": "Korea",
"phase": "Expansion",
"change": 0.281,
"period": "2026-05",
"vs_trend": "above",
"direction": "rising",
"phase_note": "above long-term trend and rising — activity accelerating",
"is_aggregate": false,
"previous_cli": 102.319
},
{
"cli": 102.105,
"code": "IND",
"name": "India",
"phase": "Expansion",
"change": 0.18,
"period": "2026-05",
"vs_trend": "above",
"direction": "rising",
"phase_note": "above long-term trend and rising — activity accelerating",
"is_aggregate": false,
"previous_cli": 101.924
},
{
"cli": 101.731,
"code": "CAN",
"name": "Canada",
"phase": "Expansion",
"change": 0.116,
"period": "2026-05",
"vs_trend": "above",
"direction": "rising",
"phase_note": "above long-term trend and rising — activity accelerating",
"is_aggregate": false,
"previous_cli": 101.615
},
{
"cli": 101.022,
"code": "USA",
"name": "United States",
"phase": "Expansion",
…