Unemployment, total (% of total labor force)
Unemployment refers to the share of the labor force that is without work but available for and seeking employment.
unemploymentlaborworld-bank
Qualité
99.4
Attribution
World Bank (https://data.worldbank.org)
Schéma
| Colonne | Type | Description |
|---|---|---|
| country_code | string | ISO 3166-1 alpha-3 country code (World Bank API field countryiso3code). |
| country_name | string | Country name as published by the World Bank API. |
| year | integer | Calendar year of the observation (World Bank API field date). |
| value | float | Indicator value for the country and year, as defined by the World Bank indicator (see the dataset description). Missing values are null. (unit: % of total labor force) |
Exemple de lignes
| country_code | country_name | year | value |
|---|---|---|---|
| CAN | Canada | 2000 | 6.829 |
| CAN | Canada | 2001 | 7.219 |
| CAN | Canada | 2002 | 7.665 |
| CAN | Canada | 2003 | 7.574 |
| CAN | Canada | 2004 | 7.185 |
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/unemployment_total" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/world_bank/unemployment_total").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/unemployment_total
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.