GDP per capita, current prices
Gross domestic product is the most commonly used single measure of a country's overall economic activity. It represents the total value at current prices of final goods and services produced within a country during a specified time period divided by the average population for the same one year.
Source: IMF DataMapper10,873 lignesMis à jour: 21/09/2026
gdpper-capitamacroeconomicsimf
Qualité
92.5
Attribution
International Monetary Fund (IMF DataMapper)
Schéma
| Colonne | Type | Description |
|---|---|---|
| country_code | string | IMF country code (ISO 3166-1 alpha-3). |
| country_name | string | Country label from the IMF DataMapper country list. |
| year | integer | Calendar year of the observation. |
| value | float | Indicator value for the country and year, as defined by the IMF World Economic Outlook (see the dataset description). Missing values are null. (unit: current US$) |
Exemple de lignes
| country_code | country_name | year | value |
|---|---|---|---|
| ABW | Aruba | 1995 | 13707.689 |
| ABW | Aruba | 1996 | 13947.141 |
| ABW | Aruba | 1997 | 15339.075 |
| ABW | Aruba | 1998 | 16580.538 |
| ABW | Aruba | 1999 | 16989.122 |
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_gdp_per_capita" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/imf/imf_gdp_per_capita").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_gdp_per_capita
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.