Covid-19 Get Global Timeseries Data by Date Range
Stuff You Need to Know
Covid-19 has created a way for you to see cumulative Coronavirus-19 timeseries information for a specific date range, including confirmed cases, number of deaths and number of recovered. All data is from John Hopkins University.
How to Configure It
- Start Date: Select the start date for which you would like to see the details from the date picker calendar or enter date in field.
- End Date: Select the end date for which you would like to see the details from the date picker calendar or enter date in field.
What Happens Next
The response from Covid-19 will look like this:
{
  "count": 174,
  "result": {
    "AFG": [
      {
        "confirmed": 24,
        "date": "2020-03-21",
        "deaths": 0,
        "recovered": 1
      },
      {
        "confirmed": 40,
        "date": "2020-03-22",
        "deaths": 1,
        "recovered": 1
      },
      {
        "confirmed": 40,
        "date": "2020-03-23",
        "deaths": 1,
        "recovered": 1
      }
    ],
    "AGO": [
      {
        "confirmed": 2,
        "date": "2020-03-21",
        "deaths": 0,
        "recovered": 0
      },
      {
        "confirmed": 2,
        "date": "2020-03-22",
        "deaths": 0,
        "recovered": 0
      },
      {
        "confirmed": 3,
        "date": "2020-03-23",
        "deaths": 0,
        "recovered": 0
      }
    ],
...
]
This list contains timeseries data for each of the dates in the selected range, grouped by country (shown as the 3-letter country code).
Original Documentation
https://github.com/backtrackbaba/covid-api
