Public
Documentation Settings

COVID-19 stats server

Novel Coronavirus COVID-19 API

This is an API for the Novel Coronavirus (COVID-19) Statistics.

Source of data for this API is Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE) Github Repository.

Using API, you can search COVID-19 confirmed, death and recovered cases all around the world.

Code repo is available as Bitbucket Repository..

cases

GETReturns total count for all types of cases

https://covid19-stats-api.herokuapp.com/api/v1/cases?country=India
PARAMS
country

India

Country name

Example Request
curl
curl --location 'https://covid19-stats-api.herokuapp.com/api/v1/cases?country=%3Cstring%3E'
200 OK
Example Response
json
{
  "confirmed": 123,
  "deaths": 11,
  "recovered": 110
}
Content-Type

application/json

GETReturns total count for given case type with country

https://covid19-stats-api.herokuapp.com/api/v1/cases/country/:type
PATH VARIABLES
type

confirmed

Example Request
curl
curl --location 'https://covid19-stats-api.herokuapp.com/api/v1/cases/country/:type'
500 Internal Server Error
Example Response
json
{
  "code": "<integer>",
  "message": "<string>"
}
Content-Type

application/json

GETReturns total count for given case type with state

https://covid19-stats-api.herokuapp.com/api/v1/cases/state/:type?country=China
PARAMS
country

China

country

Italy

PATH VARIABLES
type

confirmed

Example Request
curl
curl --location 'https://covid19-stats-api.herokuapp.com/api/v1/cases/state/:type?country=%3Cstring%3E'
500 Internal Server Error
Example Response
json
{
  "code": "<integer>",
  "message": "<string>"
}
Content-Type

application/json