get-health-statistics
Retrieve WHO Global Health Observatory statistics for specific health indicators and countries to support medical research and analysis.
Instructions
Get health statistics and indicators from WHO Global Health Observatory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| indicator | Yes | Health indicator to search for (e.g., 'Life expectancy', 'Mortality rate') | |
| country | No | Country code (e.g., 'USA', 'GBR') - optional | |
| limit | No | Number of results to return (max 20) |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"description": "Country code (e.g., 'USA', 'GBR') - optional",
"type": "string"
},
"indicator": {
"description": "Health indicator to search for (e.g., 'Life expectancy', 'Mortality rate')",
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of results to return (max 20)",
"maximum": 20,
"minimum": 1,
"type": "integer"
}
},
"required": [
"indicator"
],
"type": "object"
}