Ir al contenido
GET /v1/gross

Economies ranked by gross external assets (% 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/gross" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/netiip-api/v1/gross", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/netiip-api/v1/gross");
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/gross",
    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 gross external assets as a share of GDP — how much the economy owns abroad, regardless of what it owes. This is a measure of financial openness and international integration: small financial hubs and large creditor economies tower here with foreign assets worth multiples of their GDP, while large but less open economies sit lower. A high gross position with a small net one means an economy is deeply intermediated (big assets and big liabilities). Shares of GDP derived from implied GDP. Quarterly stocks, cached a few hours.",
        "board": [
            {
                "code": "LUX",
                "name": "Luxembourg",
                "period": "2025-Q4",
                "net_pct_gdp": 27,
                "is_aggregate": false,
                "assets_usd_bn": 15710.54,
                "assets_pct_gdp": 14563.5,
                "liabilities_pct_gdp": 14536.5
            },
            {
                "code": "IRL",
                "name": "Ireland",
                "period": "2025-Q4",
                "net_pct_gdp": -53.4,
                "is_aggregate": false,
                "assets_usd_bn": 11778.68,
                "assets_pct_gdp": 1779.5,
                "liabilities_pct_gdp": 1832.9
            },
            {
                "code": "NLD",
                "name": "Netherlands",
                "period": "2025-Q4",
                "net_pct_gdp": 44.7,
                "is_aggregate": false,
                "assets_usd_bn": 12053.4,
                "assets_pct_gdp": 861.7,
                "liabilities_pct_gdp": 817.1
            },
            {
                "code": "CHE",
                "name": "Switzerland",
                "period": "2025-Q4",
                "net_pct_gdp": 111.8,
                "is_aggregate": false,
                "assets_usd_bn": 6682.16,
                "assets_pct_gdp": 618.3,
                "liabilities_pct_gdp": 506.5
            },
            {
                "code": "NOR",
                "name": "Norway",
                "period": "2025-Q4",
                "net_pct_gdp": 393.8,
                "is_aggregate": false,
                "assets_usd_bn": 3286.39,
                "assets_pct_gdp": 614.2,
                "liabilities_pct_gdp": 220.4
            },
            {
                "code": "RUS",
                "name": "Russia",
                "period": "2025-Q4",
                "net_pct_gdp": 301.6,
                "is_aggregate": false,
                "assets_usd_bn": 1795.25,
                "assets_pct_gdp": 486.5,
                "liabilities_pct_gdp": 184.9
            },
            {
                "code": "GBR",
                "name": "United Kingdom",
                "period": "2025-Q4",
                "net_pct_gdp": -6.5,
                "is_aggregate": false,
                "assets_usd_bn": 19648.5,
                "assets_pct_gdp": 480.2,
                "liabilities_pct_gdp": 486.7
            },
            {
…