Zum Inhalt springen
GET /v1/phase

Economies grouped into the four phases of the cycle clock

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/leadingindicators-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Every economy grouped into the four phases of the business-cycle clock by its CLI level (above/below 100) and direction (rising/falling). Expansion → Downturn → Slowdown → Recovery → Expansion is the typical clockwise rotation. Monthly data, cached a few hours.",
        "period": "2026-05",
        "phases": {
            "Downturn": {
                "count": 9,
                "meaning": "above trend but falling — momentum rolling over",
                "members": [
                    {
                        "cli": 100.838,
                        "code": "DEU",
                        "name": "Germany",
                        "change": -0.049,
                        "is_aggregate": false
                    },
                    {
                        "cli": 100.747,
                        "code": "ESP",
                        "name": "Spain",
                        "change": -0.149,
                        "is_aggregate": false
                    },
                    {
                        "cli": 100.648,
                        "code": "G4E",
                        "name": "Major four European countries",
                        "change": -0.104,
                        "is_aggregate": true
                    },
                    {
                        "cli": 100.582,
                        "code": "FRA",
                        "name": "France",
                        "change": -0.056,
                        "is_aggregate": false
                    },
                    {
                        "cli": 100.5,
                        "code": "GBR",
                        "name": "United Kingdom",
                        "change": -0.192,
                        "is_aggregate": false
                    },
                    {
                        "cli": 100.374,
                        "code": "ZAF",
                        "name": "South Africa",
                        "change": -0.109,
                        "is_aggregate": false
                    },
                    {
                        "cli": 100.331,
                        "code": "ITA",
                        "name": "Italy",
                        "change": -0.153,
                        "is_aggregate": false
                    },
                    {
                        "cli": 100.256,
                        "code": "TUR",
                        "name": "Türkiye",
                        "change": -0.059,
                        "is_aggregate": false
                    },
                    {
                        "cli": 100.062,
                        "code": "IDN",
                        "name": "Indonesia",
                        "change": -0.323,
                        "is_aggregate": false
                    }
                ]
            },
            "Recovery": {
                "count": 1,
                "meaning": "below trend but rising — turning back up",
             
…