This is a fast (< 200ms) and basic API for tracking development of the new coronavirus (COVID-19, SARS-CoV-2). It's written in python using 🍼 Flask.
All requests must be made to the base url: https://coronavirus-tracker-api.herokuapp.com/v2/
(e.g: https://coronavirus-tracker-api.herokuapp.com/v2/locations). You can try them out in your browser to further inspect responses.
GET /v2/latest
{
"latest": {
"confirmed": 197146,
"deaths": 7905,
"recovered": 80840
}
}
GET /v2/locations
{
"locations": [
{
"id": 0,
"country": "Thailand",
"country_code": "TH",
"province": "",
"coordinates": {
"latitude": "15",
"longitude": "101"
},
"latest": {
"confirmed": 177,
"deaths": 1,
"recovered": 41
}
},
{
"id": 39,
"country": "Norway",
"country_code": "NO",
"province": "",
"coordinates": {
"latitude": "60.472",
"longitude": "8.4689"
},
"latest": {
"confirmed": 1463,
"deaths": 3,
"recovered": 1
}
}
]
}
Additionally, you can also filter by country (alpha-2 country_code).
GET /v2/locations?country_code=US
Include timelines.
GET /v2/locations?timelines=1
GET /v2/locations/:id
{
"location": {
"id": 39,
"country": "Norway",
"country_code": "NO",
"province": "",
"coordinates": { },
"latest": { },
"timelines": {
"confirmed": {
"latest": 1463,
"timeline": {
"2020-03-16T00:00:00Z": 1333,
"2020-03-17T00:00:00Z": 1463
}
},
"deaths": { },
"recovered": { }
}
}
}
Exclude timelines.
GET /v2/locations?timelines=0
The data comes from the 2019 Novel Coronavirus (nCoV) Data Repository, provided by JHU CCSE. It is programmatically retrieved, re-formatted and stored in the cache for one hour.
These are the available API wrappers created by the community. They are not neccecarily maintained by any of this project's authors or contributors.
You will need the following things properly installed on your computer.
git clone https://github.com/ExpDev07/coronavirus-tracker-api.git
cd coronavirus-tracker-api
pipenv shell
pipenv install
flask run
- Visit your app at http://localhost:5000.
make test
make lint
Thanks goes to these wonderful people (emoji key):
ExpDev 💻 📖 🚧 |
bjarkimg 💬 |
Bost 📖 |
GRIBOK 💻 |
The data is available to the public strictly for educational and academic research purposes. Please link to this repo somewhere in your project :).