/v1/manufacturing
Economies ranked by manufacturing output growth
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
},
…