Covid-19 India

Static JSON snapshots of India's Covid-19 numbers by state

🩺 Health & FoodNEWchecked 15 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · new
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
    }
  }
}
Call itcurl · fetch · python
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

Endpoints · 6NewFULL DOCS ↗
Monitored path responding — GET /v4/min/data.min.jsonchecked 15 min ago
GET/v4/min/data.min.jsonPROBED

Static JSON snapshots of India's Covid-19 numbers by state

GET/v4

V4 — documented GET route.

GET/v4/1

V4 details by ID (example: 1).

GET/v4?limit=10

V4 — documented GET route.

GET/v4/search?q=test

Search by query parameters.

GET/v4/

V4 — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.