/v1/board
Economies ranked by year-on-year real investment growth
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/investmentgrowth-api/v1/board" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/investmentgrowth-api/v1/board", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/investmentgrowth-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/investmentgrowth-api/v1/board",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Economies ranked by year-on-year real investment growth (gross fixed capital formation: machinery, buildings, infrastructure, equipment; chain-linked volume, seasonally adjusted). Investment is the most cyclical, forward-looking part of GDP — firms only commit capex when confident, so it leads the cycle. Each row carries its own quarter; discontinued series are excluded. Quarterly, cached a few hours.",
"board": [
{
"code": "SAU",
"name": "Saudi Arabia",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": 7.53,
"investment_yoy": 17.06
},
{
"code": "SVN",
"name": "Slovenia",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": 1.45,
"investment_yoy": 12.78
},
{
"code": "GRC",
"name": "Greece",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": -2.54,
"investment_yoy": 12.07
},
{
"code": "FIN",
"name": "Finland",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": 6.5,
"investment_yoy": 11.93
},
{
"code": "IND",
"name": "India",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": 2.58,
"investment_yoy": 10.84
},
{
"code": "PRT",
"name": "Portugal",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": 1.87,
"investment_yoy": 9.47
},
{
"code": "CRI",
"name": "Costa Rica",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": 1.24,
"investment_yoy": 7.58
},
{
"code": "CZE",
"name": "Czechia",
"quarter": "2026-Q1",
"reading": "investment booming",
"is_aggregate": false,
"investment_qoq": 2.01,
"investment_yoy": 7.33
},
{
"code": "AUS",
"name": "Australia",
"quarter": "2026-Q1",
…