Naar de inhoud
GET /v1/board

Economies ranked by industrial-production growth, with manufacturing

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/industrialproduction-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Economies ranked by year-on-year industrial-production growth (industry excluding construction), with manufacturing alongside. A direct read on whether the real economy is expanding or contracting; feeds straight into GDP nowcasts. Growth computed from the OECD's seasonally-adjusted production-volume index. Each row carries its own period; discontinued series are excluded. Monthly, cached a few hours.",
        "board": [
            {
                "code": "DNK",
                "name": "Denmark",
                "ip_mom": 8.35,
                "ip_yoy": 17.84,
                "period": "2026-03",
                "reading": "output expanding strongly",
                "manufacturing_yoy": 15.56
            },
            {
                "code": "ISR",
                "name": "Israel",
                "ip_mom": 4.82,
                "ip_yoy": 17.68,
                "period": "2026-02",
                "reading": "output expanding strongly",
                "manufacturing_yoy": 17.68
            },
            {
                "code": "GRC",
                "name": "Greece",
                "ip_mom": 1.03,
                "ip_yoy": 8.06,
                "period": "2026-03",
                "reading": "output expanding strongly",
                "manufacturing_yoy": 5.49
            },
            {
                "code": "LVA",
                "name": "Latvia",
                "ip_mom": 0.1,
                "ip_yoy": 7.38,
                "period": "2026-04",
                "reading": "output expanding strongly",
                "manufacturing_yoy": 5.98
            },
            {
                "code": "FIN",
                "name": "Finland",
                "ip_mom": 2.86,
                "ip_yoy": 6.41,
                "period": "2026-03",
                "reading": "output expanding strongly",
                "manufacturing_yoy": 3.67
            },
            {
                "code": "LTU",
                "name": "Lithuania",
                "ip_mom": -1.55,
                "ip_yoy": 6.24,
                "period": "2026-04",
                "reading": "output expanding strongly",
                "manufacturing_yoy": 6.98
            },
            {
                "code": "IND",
                "name": "India",
                "ip_mom": 0.06,
                "ip_yoy": 4.92,
                "period": "2026-04",
                "reading": "output growing",
                "manufacturing_yoy": 6.27
            },
            {
                "code": "SVN",
                "name": "Slovenia",
                "ip_mom": 4.81,
                "ip_yoy": 3.56,
                "period": "2026-03",
                "reading": "output growing",
                "manufacturing_yoy": 6.12
            },
            {
                "code": "BGR",
                "name": "Bulgaria",
                "ip_mom": 5.84,
                "ip_yoy": 3.29,
                "period": "2026-03",
                "reading": 
…