Coronavirus Tracker Api Versions Save

🦠 A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. It's written in python using the 🔥 FastAPI framework. Supports multiple sources!

v2.0

4 years ago

Version 2 is now here. This adds a whole new complexity to the core and introduces a new concept behind a location (it is now more flattened: https://github.com/ExpDev07/coronavirus-tracker-api/issues/55).

Endpoints added:

New endpoints!

Getting latest statistics

This gets the latest global statistics for confirmed cases, deaths, and recoveries.

GET /v2/latest

Getting locations

This retrieves all the locations. If you see, they all have an ID attached to them.

GET /v2/locations

You can also filter the locations by a alpha2-country code (https://github.com/ExpDev07/coronavirus-tracker-api/issues/54). For Norway:

GET /v2/locations?country_code=NO

Getting a single location which includes the timelines.

You use the ID assigned to the locations to access them alone (https://github.com/ExpDev07/coronavirus-tracker-api/issues/42). Through this endpoint, you'll also get the timelines associated with it.

GET /v2/location/:id

E.g: For Norway:

GET /v2/location/39

All dates are using the same ISO standard now.

(https://github.com/ExpDev07/coronavirus-tracker-api/issues/46).

What happens to the old endpoints (/all, /confirmed, /deaths, and /recovered)?

They'll stay around for legacy reasons and not to break peoples' apps.