Covid-19 India
Static JSON snapshots of India's Covid-19 numbers by state
data.covid19india.org publishes flat JSON files with state- and district-level case, recovery, and vaccination counts for India. There are no query parameters — you just fetch the file you want. The volunteer project wound down, so the data is frozen in late 2021.
GET https://data.covid19india.org/v4/min/data.min.json
{
"AN": {
"delta": {
"tested": 1376,
"vaccinated1": 3,
"vaccinated2": 13
},
"delta7": {
"confirmed": 3,
"recovered": 5,
"tested": 8936
},
"meta": {
"date": "2021-10-31",
"last_updated": "2021-11-01T11:03:10+05:30"
}
}
}curl "https://data.covid19india.org/v4/min/data.min.json"const res = await fetch("https://data.covid19india.org/v4/min/data.min.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://data.covid19india.org/v4/min/data.min.json")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/v4/min/data.min.jsonPROBEDStatic JSON snapshots of India's Covid-19 numbers by state
/v4V4 — documented GET route.
/v4/1V4 details by ID (example: 1).
/v4?limit=10V4 — documented GET route.
/v4/search?q=testSearch by query parameters.
/v4/V4 — 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.
Covid-19 India: common questions
Is Covid-19 India free to use?
Yes — Covid-19 India is a free health & food API. Free tier: Free — static JSON files (no key). Whether the free tier allows commercial use is unclear — check the provider docs.
Does Covid-19 India need an API key?
No — Covid-19 India needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Covid-19 India from the browser?
Not directly — Covid-19 India doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Covid-19 India up right now?
As of our last scheduled check, Covid-19 India is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.