Aller au contenu
GET /v1/board

Economies ranked by headline CPI inflation

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/cpiinflation-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/cpiinflation-api/v1/board" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cpiinflation-api/v1/board", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cpiinflation-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/cpiinflation-api/v1/board",
    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 headline consumer-price inflation — the year-on-year growth of the national all-items CPI, the way it is reported. The core rate (excluding food and energy) is shown alongside so you can see, at a glance, where the headline is being driven by volatile food/energy versus stickier underlying inflation. Each row carries its own month; discontinued series excluded. Pass countries_only=true to drop aggregates such as the euro area or OECD total. Monthly, cached a few hours.",
        "board": [
            {
                "code": "ARG",
                "core": null,
                "food": 30.87,
                "name": "Argentina",
                "energy": null,
                "period": "2026-04",
                "headline": 32.35,
                "services": 43.13,
                "is_aggregate": false
            },
            {
                "code": "TUR",
                "core": 32.04,
                "food": 28.31,
                "name": "Türkiye",
                "energy": 29.39,
                "period": "2025-12",
                "headline": 30.89,
                "services": null,
                "is_aggregate": false
            },
            {
                "code": "COL",
                "core": 6.28,
                "food": 6.7,
                "name": "Colombia",
                "energy": -1.78,
                "period": "2026-04",
                "headline": 5.68,
                "services": 7.31,
                "is_aggregate": false
            },
            {
                "code": "BGR",
                "core": 4.96,
                "food": 5.6,
                "name": "Bulgaria",
                "energy": 3.58,
                "period": "2025-12",
                "headline": 4.95,
                "services": null,
                "is_aggregate": false
            },
            {
                "code": "ISL",
                "core": 4.26,
                "food": 5.49,
                "name": "Iceland",
                "energy": 4.89,
                "period": "2025-12",
                "headline": 4.49,
                "services": null,
                "is_aggregate": false
            },
            {
                "code": "IND",
                "core": null,
                "food": null,
                "name": "India",
                "energy": null,
                "period": "2026-04",
                "headline": 4.46,
                "services": null,
                "is_aggregate": false
            },
            {
                "code": "BRA",
                "core": null,
                "food": null,
                "name": "Brazil",
                "energy": null,
                "period": "2026-04",
                "headline": 4.39,
                "services": null,
                "is_aggregate": false
            },
            {
                "code": "USA",
                "core": 2.85,
                "food": 2.74,
                "name": "Unite
…