Unemployment rate
The number of unemployed persons as a percentage of the total labor force.
Source: IMF DataMapper5,165 lignesMis à jour: 21/09/2026
unemploymentlaborimf
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: % of total labor force) |
Exemple de lignes
| country_code | country_name | year | value |
|---|---|---|---|
| ABW | Aruba | 1986 | 19.6 |
| ABW | Aruba | 1987 | 14.5 |
| ABW | Aruba | 1988 | 5 |
| ABW | Aruba | 1989 | 1.5 |
| ABW | Aruba | 1990 | 1.3 |
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_unemployment_rate" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/imf/imf_unemployment_rate").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_unemployment_rate
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.