Open Disease
Free COVID-19 and influenza statistics, no key
disease.sh aggregates COVID-19 and influenza numbers from JHU, Worldometers, and other sources into one keyless JSON API. This endpoint returns global totals — cases, deaths, recovered, tests, and per-million rates. Free to use for widgets, dashboards, or apps.
GET https://disease.sh/v3/covid-19/all
{
"updated": 1783246638946,
"cases": 704753890,
"deaths": 7010681,
"recovered": 675619811,
"active": 22123398,
"tests": 7026505313,
"population": 7944935131,
"affectedCountries": 231
}curl "https://disease.sh/v3/covid-19/all"const res = await fetch("https://disease.sh/v3/covid-19/all");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://disease.sh/v3/covid-19/all")
print(res.json())/v3/covid-19/allPROBEDFree COVID-19 and influenza statistics, no key
/v3V3 — documented GET route.
/v3/1V3 details by ID (example: 1).
/v3?limit=10V3 — documented GET route.
/v3/search?q=testSearch by query parameters.
/v3/V3 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Open Disease: common questions
Is Open Disease free to use?
Yes — Open Disease is a free health & food API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Open Disease need an API key?
No — Open Disease needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Open Disease from the browser?
Yes — Open Disease returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Open Disease up right now?
As of our last scheduled check, Open Disease is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.