covid-api
Public API for Covid-19 data by Johns Hopkins CSSE https://github.com/CSSEGISandData/COVID-19.
Website - https://covid-api.com
Documentation - https://covid-api.com/api
Changelog
2020-04-22
- Added filter by city_name to /reports endpoint. Note that currently city data is available for the USA only.
2020-04-17
- Changed /reports/total query parameters - "date" is now optional. If not provided, the data for the latest date will be returned.
2020-04-15
- Added following fields to the /reports/total endpoint:
- date
- last_update
- recovered
- recovered_diff
- active
- active_diff
- fatality_rate
2020-04-08
- Added new endpoint - total data for the entire world for particular date, as was suggested by mgfcf. Example - https://covid-api.com/api/reports/total?date=2020-04-07.
2020-03-26
- Added confirmed and deaths data for the US cities. Arrays of cities are added to each state.
- Data for recovered cases for US and Canada cases at the state/province level is consolidated under a province named "Recovered". This is because Johns Hopkins CSSE does not update it at the state/province level for US and Canada. For all other countries and territories, this data is still present.
2020-03-23
- "mortality" changed to "fatality_rate", as was suggested by ezanardi
2020-03-19
- Added "mortality" = deaths / confirmed, as was suggested by impredicative
2020-03-18
- Added "active" and "active-diff" (active = confirmed - deaths - recovered) as was suggested by impredicative
2020-03-16
- Added ISO codes for countries
- Added statistics diff with the previous day