Tous les jeux de données

Current account balance, percent of GDP

The current account is the record of all transactions in the balance of payments covering the exports and imports of goods and services, payments of income, and current transfers between residents of a country and nonresidents.

Source: IMF DataMapper10,556 lignesMis à jour: 21/09/2026
current-accounttrademacroeconomicsimf

Qualité

92.5

Attribution

International Monetary Fund (IMF DataMapper)

Schéma

ColonneTypeDescription
country_codestringIMF country code (ISO 3166-1 alpha-3).
country_namestringCountry label from the IMF DataMapper country list.
yearintegerCalendar year of the observation.
valuefloatIndicator value for the country and year, as defined by the IMF World Economic Outlook (see the dataset description). Missing values are null. (unit: % of GDP)

Exemple de lignes

country_codecountry_nameyearvalue
ABWAruba1999-25.3
ABWAruba200011.3
ABWAruba200116.4
ABWAruba2002-17
ABWAruba2003-8.2

Utiliser avec un LLM

Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/imf/imf_current_account_balance" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/imf/imf_current_account_balance").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

Point d’accès API: https://datazimuts.com/v1/datasets/imf/imf_current_account_balance

Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.