Disease Sh Ext Tools#
Configuration File: disease_sh_ext_tools.json
Tool Type: Local
Tools Count: 2
This page contains all tools defined in the disease_sh_ext_tools.json configuration file.
Available Tools#
DiseaseSH_get_covid_historical (Type: BaseRESTTool)#
Get historical COVID-19 timeline data (cases, deaths, recoveries) for a country or globally using…
DiseaseSH_get_covid_historical tool specification
Tool Information:
Name:
DiseaseSH_get_covid_historicalType:
BaseRESTToolDescription: Get historical COVID-19 timeline data (cases, deaths, recoveries) for a country or globally using the Disease.sh API. Returns day-by-day counts for the specified time period. No authentication required. Useful for pandemic trend analysis and epidemiological research.
Parameters:
country([‘string’, ‘null’]) (optional) Country name or ISO code. Use ‘all’ for global data. Examples: ‘usa’, ‘china’, ‘india’, ‘uk’, ‘germany’, ‘all’lastdays([‘integer’, ‘null’]) (optional) Number of past days to include. Use ‘all’ for full history. Default: 30. Examples: 7, 30, 90, 365
Example Usage:
query = {
"name": "DiseaseSH_get_covid_historical",
"arguments": {
}
}
result = tu.run(query)
DiseaseSH_get_vaccine_coverage (Type: BaseRESTTool)#
Get COVID-19 vaccine coverage data for a specific country using the Disease.sh API. Returns timel…
DiseaseSH_get_vaccine_coverage tool specification
Tool Information:
Name:
DiseaseSH_get_vaccine_coverageType:
BaseRESTToolDescription: Get COVID-19 vaccine coverage data for a specific country using the Disease.sh API. Returns timeline of total vaccination doses administered and percentage of population vaccinated. Global data is not available through this tool – the upstream API serves it from a differently-shaped endpoint this tool does not call; pass a real country name/ISO code. No authentication required.
Parameters:
country(string) (required) Country name or ISO code (a real one – ‘all’ is not supported by this endpoint and 404s). Examples: ‘usa’, ‘uk’, ‘germany’, ‘india’lastdays([‘integer’, ‘null’]) (optional) Number of past days to include. Default: 30. Examples: 7, 30, 90
Example Usage:
query = {
"name": "DiseaseSH_get_vaccine_coverage",
"arguments": {
"country": "example_value"
}
}
result = tu.run(query)