Ir al contenido
GET /v1/board

Economies ranked by net IIP (% of GDP)

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/netiip-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/netiip-api/v1/board" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/netiip-api/v1/board", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/netiip-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/netiip-api/v1/board",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "Economies ranked by their net international investment position as a share of GDP — from biggest net creditors (positive: they own more abroad than the world owns of them) to biggest net debtors (negative). The Net IIP is the accumulated stock that current-account surpluses and deficits pile up into, and one of the deepest gauges of external sustainability: a large positive position is a structural buffer for a currency, a large negative one a vulnerability. Shares of GDP are derived from each economy's implied GDP (current account, same OECD data family). Pass countries_only=true to drop aggregates. Quarterly end-of-period stocks, cached a few hours.",
        "board": [
            {
                "code": "NOR",
                "name": "Norway",
                "period": "2025-Q4",
                "net_usd_bn": 2107.1,
                "net_pct_gdp": 393.8,
                "is_aggregate": false
            },
            {
                "code": "RUS",
                "name": "Russia",
                "period": "2025-Q4",
                "net_usd_bn": 1113.04,
                "net_pct_gdp": 301.6,
                "is_aggregate": false
            },
            {
                "code": "CHE",
                "name": "Switzerland",
                "period": "2025-Q4",
                "net_usd_bn": 1208.5,
                "net_pct_gdp": 111.8,
                "is_aggregate": false
            },
            {
                "code": "DNK",
                "name": "Denmark",
                "period": "2025-Q4",
                "net_usd_bn": 501.7,
                "net_pct_gdp": 103.4,
                "is_aggregate": false
            },
            {
                "code": "JPN",
                "name": "Japan",
                "period": "2026-Q1",
                "net_usd_bn": 3570.37,
                "net_pct_gdp": 82.7,
                "is_aggregate": false
            },
            {
                "code": "DEU",
                "name": "Germany",
                "period": "2025-Q4",
                "net_usd_bn": 4280.83,
                "net_pct_gdp": 81.1,
                "is_aggregate": false
            },
            {
                "code": "SAU",
                "name": "Saudi Arabia",
                "period": "2025-Q4",
                "net_usd_bn": 720.42,
                "net_pct_gdp": 65.1,
                "is_aggregate": false
            },
            {
                "code": "SWE",
                "name": "Sweden",
                "period": "2025-Q4",
                "net_usd_bn": 386.9,
                "net_pct_gdp": 54.5,
                "is_aggregate": false
            },
            {
                "code": "BEL",
                "name": "Belgium",
                "period": "2025-Q4",
                "net_usd_bn": 389.21,
                "net_pct_gdp": 51.5,
                "is_aggregate": false
            },
            {
                "code": "NLD",
                "name": "Ne
…