Aller au contenu
GET /v1/momentum

Economies ranked by the latest quarter-on-quarter GDP move

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/gdp-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "Economies ranked by the latest quarter-on-quarter real GDP move — the freshest read on the cycle, the part markets react to first. Year-on-year alongside. Quarterly, cached a few hours.",
        "board": [
            {
                "code": "IND",
                "name": "India",
                "gdp_qoq": 1.89,
                "gdp_yoy": 7.96,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "DNK",
                "name": "Denmark",
                "gdp_qoq": 1.89,
                "gdp_yoy": 5.95,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "KOR",
                "name": "Korea",
                "gdp_qoq": 1.83,
                "gdp_yoy": 3.78,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "IDN",
                "name": "Indonesia",
                "gdp_qoq": 1.37,
                "gdp_yoy": 5.46,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "CHN",
                "name": "China (People’s Republic of)",
                "gdp_qoq": 1.3,
                "gdp_yoy": 5,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "BRA",
                "name": "Brazil",
                "gdp_qoq": 1.1,
                "gdp_yoy": 1.81,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "EST",
                "name": "Estonia",
                "gdp_qoq": 1.08,
                "gdp_yoy": 2.44,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "FIN",
                "name": "Finland",
                "gdp_qoq": 0.9,
                "gdp_yoy": 1.02,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "HUN",
                "name": "Hungary",
                "gdp_qoq": 0.8,
                "gdp_yoy": 1.73,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "SVN",
                "name": "Slovenia",
                "gdp_qoq": 0.69,
                "gdp_yoy": 3.06,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "CHE",
                "name": "Switzerland",
                "gdp_qoq": 0.66,
                "gdp_yoy": 0.59,
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "code": "GBR",
                "name": "United Kingdom",
                "gdp_qoq": 0.63,
                "
…