/v1/industry
Economies ranked by industry value-added 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/gdpsector-api/v1/industry" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gdpsector-api/v1/industry", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gdpsector-api/v1/industry");
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/gdpsector-api/v1/industry",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Economies ranked by year-on-year real growth in industry gross value added (chain-linked volume, seasonally adjusted). Value added by sector decomposes GDP — it shows which part of the economy is carrying the expansion. Each row carries its own quarter; discontinued series are excluded. Quarterly, cached a few hours.",
"board": [
{
"qoq": 6.72,
"yoy": 18.2,
"code": "DNK",
"name": "Denmark",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -5.86,
"yoy": 6.51,
"code": "EST",
"name": "Estonia",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": 1.39,
"yoy": 6.34,
"code": "LVA",
"name": "Latvia",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -0.73,
"yoy": 4.37,
"code": "GRC",
"name": "Greece",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -1.14,
"yoy": 4.29,
"code": "CRI",
"name": "Costa Rica",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": 1.08,
"yoy": 4.1,
"code": "SWE",
"name": "Sweden",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -3.82,
"yoy": 3.99,
"code": "SAU",
"name": "Saudi Arabia",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": 0.76,
"yoy": 3.83,
"code": "NOR",
"name": "Norway",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -9.28,
"yoy": 3.38,
"code": "LUX",
"name": "Luxembourg",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -2,
"yoy": 3.03,
"code": "POL",
"name": "Poland",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -0.65,
"yoy": 2.73,
"code": "AUS",
"name": "Australia",
"quarter": "2026-Q1",
"is_aggregate": false
},
{
"qoq": -0.35,
"yoy": 2.57,
"code":
…