Zum Inhalt springen
GET /v1/manufacturing

Economies ranked by manufacturing output growth

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Economies ranked by year-on-year manufacturing output growth — the largest and most cyclical part of industry. Growth computed from the OECD's seasonally-adjusted production-volume index. Monthly, cached a few hours.",
        "board": [
            {
                "code": "ISR",
                "name": "Israel",
                "ip_yoy": 17.68,
                "period": "2026-02",
                "reading": "output expanding strongly",
                "manufacturing_mom": 4.82,
                "manufacturing_yoy": 17.68
            },
            {
                "code": "DNK",
                "name": "Denmark",
                "ip_yoy": 17.84,
                "period": "2026-03",
                "reading": "output expanding strongly",
                "manufacturing_mom": 7.98,
                "manufacturing_yoy": 15.56
            },
            {
                "code": "LTU",
                "name": "Lithuania",
                "ip_yoy": 6.24,
                "period": "2026-04",
                "reading": "output expanding strongly",
                "manufacturing_mom": -1.67,
                "manufacturing_yoy": 6.98
            },
            {
                "code": "IND",
                "name": "India",
                "ip_yoy": 4.92,
                "period": "2026-04",
                "reading": "output expanding strongly",
                "manufacturing_mom": -1.02,
                "manufacturing_yoy": 6.27
            },
            {
                "code": "SVN",
                "name": "Slovenia",
                "ip_yoy": 3.56,
                "period": "2026-03",
                "reading": "output expanding strongly",
                "manufacturing_mom": 3.89,
                "manufacturing_yoy": 6.12
            },
            {
                "code": "LVA",
                "name": "Latvia",
                "ip_yoy": 7.38,
                "period": "2026-04",
                "reading": "output expanding strongly",
                "manufacturing_mom": 2.55,
                "manufacturing_yoy": 5.98
            },
            {
                "code": "GRC",
                "name": "Greece",
                "ip_yoy": 8.06,
                "period": "2026-03",
                "reading": "output expanding strongly",
                "manufacturing_mom": 0.59,
                "manufacturing_yoy": 5.49
            },
            {
                "code": "IDN",
                "name": "Indonesia",
                "ip_yoy": null,
                "period": "2025-12",
                "reading": "output growing",
                "manufacturing_mom": 0.75,
                "manufacturing_yoy": 4.89
            },
            {
                "code": "SWE",
                "name": "Sweden",
                "ip_yoy": 3.1,
                "period": "2026-03",
                "reading": "output growing",
                "manufacturing_mom": -1.26,
                "manufacturing_yoy": 4.1
            },
  
…