/v1/country
One economy's industrial and manufacturing production growth
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/industrialproduction-api/v1/country" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/industrialproduction-api/v1/country", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/industrialproduction-api/v1/country");
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/country",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"code": "USA",
"name": "United States",
"note": "One economy's industrial-production and manufacturing growth, year-on-year and month-on-month, from the OECD's seasonally-adjusted production-volume index. A positive year-on-year change means output is above its level a year earlier. Monthly, cached a few hours.",
"period": "2026-04",
"source": "OECD industrial production (SDMX)",
"manufacturing": {
"mom": 0.6,
"yoy": 1.3,
"period": "2026-04",
"reading": "output growing"
},
"industrial_production": {
"mom": 0.68,
"yoy": 1.35,
"period": "2026-04",
"reading": "output growing"
}
},
"meta": {
"timestamp": "2026-06-12T19:37:33.670Z",
"request_id": "b7bec13f-dd96-489c-9fac-995b94e24163"
},
"status": "ok",
"message": "Country industrial production retrieved successfully",
"success": true
}