/v1/board
Economies ranked by year-on-year real GDP growth, with quarter-on-quarter
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/gdp-api/v1/board" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gdp-api/v1/board", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gdp-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/gdp-api/v1/board",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Economies ranked by year-on-year real GDP growth (chain-linked volume, seasonally adjusted), with the quarter-on-quarter move alongside. The headline read on whether an economy is expanding or in recession; sets the backdrop for central-bank policy. Each row carries its own quarter; discontinued series are excluded. Quarterly, cached a few hours.",
"board": [
{
"code": "IND",
"name": "India",
"gdp_qoq": 1.89,
"gdp_yoy": 7.96,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "DNK",
"name": "Denmark",
"gdp_qoq": 1.89,
"gdp_yoy": 5.95,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "IDN",
"name": "Indonesia",
"gdp_qoq": 1.37,
"gdp_yoy": 5.46,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "CHN",
"name": "China (People’s Republic of)",
"gdp_qoq": 1.3,
"gdp_yoy": 5,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "CRI",
"name": "Costa Rica",
"gdp_qoq": 0.28,
"gdp_yoy": 4.11,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "KOR",
"name": "Korea",
"gdp_qoq": 1.83,
"gdp_yoy": 3.78,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "POL",
"name": "Poland",
"gdp_qoq": 0.59,
"gdp_yoy": 3.5,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "SAU",
"name": "Saudi Arabia",
"gdp_qoq": -1.18,
"gdp_yoy": 3.08,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
{
"code": "SVN",
"name": "Slovenia",
"gdp_qoq": 0.69,
"gdp_yoy": 3.06,
"quarter": "2026-Q1",
"reading": "expanding strongly",
"is_aggregate": false
},
…