BCG immunization coverage among 1-year-olds (%) (WUENIC)
BCG immunization coverage among 1-year-olds (%) (WUENIC) Source: WHO Global Health Observatory (indicator WHS4_543). Rows are country x year; sex-disaggregated rows carry a sex label.
Source: WHO Global Health Observatory4,117 lignesMis à jour: 21/09/2026
immunizationbcgvaccineswho
Qualité
97
Attribution
World Health Organization (WHO)
Schéma
| Colonne | Type | Description |
|---|---|---|
| country_code | string | Country code (WHO GHO API field SpatialDim, country-level rows only). |
| country_name | string | Country name from the WHO GHO COUNTRY dimension labels. |
| year | integer | Year of observation (WHO GHO API field TimeDim). |
| value | float | Estimate value for the country, year (and sex where present), as defined by the WHO GHO indicator (see the dataset description; WHO GHO API field NumericValue). |
Exemple de lignes
| country_code | country_name | year | value |
|---|---|---|---|
| AFG | AFG | 2000 | 30 |
| AFG | AFG | 2001 | 43 |
| AFG | AFG | 2002 | 46 |
| AFG | AFG | 2003 | 44 |
| AFG | AFG | 2004 | 51 |
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/who_gho/bcg_immunization_coverage" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/who_gho/bcg_immunization_coverage").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/who_gho/bcg_immunization_coverage
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.