Μετάβαση στο περιεχόμενο
GET /v1/board

Every economy's CLI, change and business-cycle phase, ranked

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/leadingindicators-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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",
            
…