We are porting the data repository from covid19india.org API to covid19bharat.org API
- As of 31st October 2021, data.covid19india.org will stop updating the data. We will keep the data flowing on data.covid19bharat.org
- Aggregated sheets provide aggregated data at the district/state levels in csv format.
- V4 json endpoints. These are the json apis that are used by the website to show all the statistics on the site. These can be used by developers and analysts who have knowledge of json parsing (recommended approach). All our v4 endpoints are actively developed and in use since this serves the frontend view Documentation for the same.
- Latest data from the google sheet (10-20 minutes delayed) is available through the
latest
end-point. These are present under theraw files
section below. (Not recommended since the number of files is huge and there is no additional information present in these as compared to the above mentioned endpoints.)
Status | Link to API | Description |
---|---|---|
💚 | https://data.covid19bharat.org/v4/min/timeseries.min.json | Daily numbers across C,R,D and Tested per state (historical data). |
💚 | https://data.covid19bharat.org/v4/min/data.min.json | Current day numbers across districts and states. |
Note: Please consider using the above endpoints for all your data needs. All the data we show on the website is fuelled by the above endpoints.
Sheet Name | Link to CSV | Description | |
---|---|---|---|
💚 | case_time_series | https://data.covid19bharat.org/csv/latest/case_time_series.csv | India level timeseries for Confirmed, Recovered and Deceased cases |
💚 | states | https://data.covid19bharat.org/csv/latest/states.csv | Statewise timeseries of Confirmed, Recovered and Deceased numbers. |
💚 | districts | https://data.covid19bharat.org/csv/latest/districts.csv | Districtwise timeseries of Confirmed, Recovered and Deceased numbers. |
💚 | state_wise_daily | https://data.covid19bharat.org/csv/latest/state_wise_daily.csv | Statewise per day delta of Confirmed, Recovered and Deceased numbers. |
💚 | state_wise | https://data.covid19bharat.org/csv/latest/state_wise.csv | Statewise cumulative numbers till date. |
💚 | district_wise | https://data.covid19bharat.org/csv/latest/district_wise.csv | Districtwise Cumulative numbers till date. |
💚 | statewise_tested_numbers_data | https://data.covid19bharat.org/csv/latest/statewise_tested_numbers_data.csv | Number of tests conducted in each state, ventilators ,hospital bed occupany reported in state bulletins |
💚 | tested_numbers_icmr_data | https://data.covid19bharat.org/csv/latest/tested_numbers_icmr_data.csv | Number of tests reported by ICMR |
💚 | icmr_labs_statewise | https://data.covid19bharat.org/csv/latest/icmr_labs_statewise.csv | Number of Labs in each state as per ICMR |
💚 | sources_list | https://data.covid19bharat.org/csv/latest/sources_list.csv | List of sources that we are using. |
💚 | rtpcr_samples_collected | http://data.covid19bharat.org/csv/latest/icmr_rtpcr_tests_daily.csv | Number of RTPCR samples collected statewise in ICMR Application |
💚 | vaccine_doses_administered_statewise | http://data.covid19bharat.org/csv/latest/vaccine_doses_statewise_v2.csv | Number of vaccine doses administered statewise - Collected from MOHFW daily bulletin |
💚 | cowin_vaccine_data_statewise | http://data.covid19bharat.org/csv/latest/cowin_vaccine_data_statewise.csv | Key data points from CoWin database at a state level |
💚 | cowin_vaccine_data_districtwise | http://data.covid19bharat.org/csv/latest/cowin_vaccine_data_districtwise.csv | Key data points from CoWin database at a district level |
Latest data from the google sheet (10-20 minutes delayed) is available through the latest
end-point.
These endpoints should be avoided unless none of the above endpoints work for you.
- Avoid using raw sheets. The only reason to use raw sheets would be to refer to demographics (rarely available) or to sources of numbers
- Always try to use the aggregated numbers above as they have been treated for discrepancies
-
If you notice issues, have questions or want to suggest enhancements, please raise an issue in the repo.
-
Getting started
-
- Clone this repository: https://github.com/DataKind-BLR/covid19bharat_data
-
npm install
andpip install -r requirements.txt
-
- run node src/sheets-to-csv.js - this should generate csv files inside a tmp directory in the root directory.
-
A more detailed note of the columns present in the data may be found in the json documentation
....................................................