Who Gho Tools¶
Configuration File: who_gho_tools.json
Tool Type: Local
Tools Count: 2
This page contains all tools defined in the who_gho_tools.json configuration file.
Available Tools¶
WHOGHO_get_indicator_data (Type: BaseRESTTool)¶
Get actual health data values for a specific WHO Global Health Observatory indicator by its code….
WHOGHO_get_indicator_data tool specification
Tool Information:
Name:
WHOGHO_get_indicator_dataType:
BaseRESTToolDescription: Get actual health data values for a specific WHO Global Health Observatory indicator by its code. Returns country-level data with values, confidence intervals, year, and sex/age breakdowns. No authentication required. Common indicator codes: WHOSIS_000001 (life expectancy at birth), MALARIA002 (malaria cases), MDG_0000000026 (HIV prevalence), NCD_BMI_30C (obesity prevalence), SDGPM25 (PM2.5 air pollution), WHS4_100 (hospital beds per 10000).
Parameters:
indicator_code(string) (required) WHO GHO indicator code. Examples: ‘WHOSIS_000001’ (life expectancy), ‘MALARIA002’ (malaria cases), ‘MDG_0000000026’ (HIV prevalence), ‘NCD_BMI_30C’ (obesity), ‘SDGPM25’ (air pollution PM2.5), ‘WHS4_100’ (hospital beds)filter([‘string’, ‘null’]) (optional) OData filter for data rows. Examples: “SpatialDim eq ‘USA’”, “TimeDim eq 2022”, “Dim1 eq ‘SEX_FMLE’ and TimeDim ge 2015”top([‘integer’, ‘null’]) (optional) Maximum number of data rows to return. Default: 20
Example Usage:
query = {
"name": "WHOGHO_get_indicator_data",
"arguments": {
"indicator_code": "example_value"
}
}
result = tu.run(query)
WHOGHO_search_indicators (Type: BaseRESTTool)¶
Search WHO Global Health Observatory (GHO) health indicators by name using the ODATA API. Returns…
WHOGHO_search_indicators tool specification
Tool Information:
Name:
WHOGHO_search_indicatorsType:
BaseRESTToolDescription: Search WHO Global Health Observatory (GHO) health indicators by name using the ODATA API. Returns indicator codes and names covering mortality, disease, nutrition, maternal health, mental health, and more. No authentication required. Use indicator codes with WHOGHO_get_indicator_data to retrieve actual data values. Examples: ‘life expectancy’ (WHOSIS_000001), ‘malaria’ (MALARIA002), ‘obesity’ (NCD_BMI_30C).
Parameters:
filter([‘string’, ‘null’]) (optional) OData filter string for indicator names. Examples: “contains(IndicatorName,’malaria’)”, “contains(IndicatorName,’HIV’)”, “contains(IndicatorName,’mortality’)”, “contains(IndicatorName,’obesity’)”top([‘integer’, ‘null’]) (optional) Maximum number of results to return. Default: 10, max: 100
Example Usage:
query = {
"name": "WHOGHO_search_indicators",
"arguments": {
}
}
result = tu.run(query)