/v1/board
Economies ranked by current-account balance (% of GDP)
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/currentaccount-api/v1/board" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/currentaccount-api/v1/board", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/currentaccount-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/currentaccount-api/v1/board",
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 their current-account balance as a share of GDP — the size-neutral external-balance screen — from biggest surpluses to biggest deficits. A surplus means the economy is a net lender to the world; a deficit means it is a net borrower financing spending with foreign capital, the deepest structural driver of a currency. goods_pct and services_pct show the trade split. change_yoy_pts is versus four quarters ago. Each row carries its own quarter; discontinued series excluded. Pass countries_only=true to drop aggregates. Quarterly, seasonally adjusted, cached a few hours.",
"board": [
{
"code": "IRL",
"name": "Ireland",
"period": "2026-Q1",
"goods_pct": 17.43,
"balance_pct": 12.9,
"is_aggregate": false,
"services_pct": 6.9,
"change_yoy_pts": 8.61
},
{
"code": "NOR",
"name": "Norway",
"period": "2025-Q4",
"goods_pct": 11.68,
"balance_pct": 12.38,
"is_aggregate": false,
"services_pct": -2.17,
"change_yoy_pts": -0.44
},
{
"code": "DNK",
"name": "Denmark",
"period": "2026-Q1",
"goods_pct": 10.61,
"balance_pct": 12.32,
"is_aggregate": false,
"services_pct": 0.05,
"change_yoy_pts": 0.97
},
{
"code": "NLD",
"name": "Netherlands",
"period": "2025-Q4",
"goods_pct": 8.44,
"balance_pct": 10.89,
"is_aggregate": false,
"services_pct": 3.87,
"change_yoy_pts": -1.12
},
{
"code": "KOR",
"name": "Korea",
"period": "2025-Q4",
"goods_pct": 7.54,
"balance_pct": 7.64,
"is_aggregate": false,
"services_pct": -0.58,
"change_yoy_pts": 1.71
},
{
"code": "JPN",
"name": "Japan",
"period": "2026-Q1",
"goods_pct": 0.62,
"balance_pct": 5.77,
"is_aggregate": false,
"services_pct": -0.8,
"change_yoy_pts": 1.12
},
{
"code": "SWE",
"name": "Sweden",
"period": "2025-Q4",
"goods_pct": 4.01,
"balance_pct": 5.55,
"is_aggregate": false,
"services_pct": -1.63,
"change_yoy_pts": -1.28
},
{
"code": "CHN",
"name": "China (People’s Republic of)",
…