Overview
The Covid-19 India API provides detailed statistics on COVID-19 cases, recoveries, deaths, and vaccinations broken down by Indian state and district. Data was sourced from official government reports and volunteer-collected datasets. It is a useful reference for data journalism, academic research, or building India-specific public health visualizations.
Beginner Tip
This API is maintained by volunteers and the data collection has largely stopped as the pandemic wound down; treat it as a historical archive rather than a live data source.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://data.covid19india.org/v4/min/data.min.json
- Result
- HTTP 200 · application/json · 257,540 bytes · compressed
- Response time
- 130 ms (median of 3) · fastest 113 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by Let's Encrypt
- Browser CORS
- No Access-Control-Allow-Origin header — call it from a server, not the browser
- Served by
- hcdn
- Recorded
- 2026-08-10
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Captured Response
Captured from a real request to https://data.covid19india.org/v4/min/data.min.json on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"AN": {
"delta": {
"tested": 1376,
"vaccinated1": 3,
"vaccinated2": 13
},
"delta21_14": {
"confirmed": 9
},
"delta7": {
"confirmed": 3,
"recovered": 5,
"tested": 8936,
"vaccinated1": 884,
"vaccinated2": 10640
},
"districts": {
"Nicobars": {
"…": "(3 more fields)"
},
"North and Middle Andaman": {
"…": "(4 more fields)"
},
"South Andaman": {
"…": "(4 more fields)"
},
"Unknown": {
"…": "(3 more fields)"
}
},
"meta": {
"date": "2021-10-31",
"last_updated": "2021-11-01T11:03:10+05:30",
"population": 397000,
"tested": {
"…": "(2 more fields)"
},
"vaccinated": {
"…": "(1 more fields)"
}
},
"total": {
"confirmed": 7651,
"deceased": 129,
"recovered": 7518,
"tested": 598033,
"vaccinated1": 294001,
"vaccinated2": 200157
}
},
"AP": {
"delta": {
"confirmed": 385,
"deceased": 4,
"recovered": 675,
"tested": 39848,
"vaccinated1": 20497,
"vaccinated2": 24137
},
"delta21_14": {
"confirmed": 3220
},
"delta7": {
"confirmed": 2873,
"deceased": 30,
"recovered": 3590,
"tested": 254532,
"vaccinated1": 1223010,
"vaccinated2": 1
… Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://data.covid19india.org/v4/min/data.min.json";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
Returned an HTML error page rather than JSON — worth knowing if your client assumes every response can be parsed as JSON.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Coronavirus
This Coronavirus API provides the latest global Covid-19 case counts, deaths, and recoveries aggregated from public health sources.
Coronavirus in the UK
The Coronavirus in the UK API provides official UK Government data on Covid-19 cases, deaths, and vaccinations broken down by region and nation.
Covid Tracking Project
⭐ Beginner's PickThe Covid Tracking Project API provides historical US Covid-19 data including tests, hospitalizations, and deaths at the state and national level.
Covid-19
⭐ Beginner's PickThe Covid-19 API by M-Media Group provides daily case counts, deaths, and recoveries for every country in the world.
Infermedica
Infermedica is an AI-powered health API that analyzes symptom descriptions in plain text and suggests possible conditions or next steps.