Tous les jeux de données

GDP per capita (current US$)

GDP per capita is gross domestic product divided by midyear population. Data are in current U.S. dollars.

Source: World Bank208 lignesMis à jour: 20/09/2026Licence: CC-BY-4.0
gdpmacroeconomicsworld-bank

Qualité

100

Attribution

World Bank (https://data.worldbank.org)

Schéma

ColonneTypeDescription
country_codestringISO 3166-1 alpha-3 country code (World Bank API field countryiso3code).
country_namestringCountry name as published by the World Bank API.
yearintegerCalendar year of the observation (World Bank API field date).
valuefloatIndicator value for the country and year, as defined by the World Bank indicator (see the dataset description). Missing values are null. (unit: current US$)

Exemple de lignes

country_codecountry_nameyearvalue
CANCanada200024271.0020563821
CANCanada200123822.096210932
CANCanada200224256.0598742201
CANCanada200328301.9097055898
CANCanada200432145.5653280273

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/world_bank/gdp_per_capita_current_usd" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/world_bank/gdp_per_capita_current_usd").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/world_bank/gdp_per_capita_current_usd

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