Skip to content

ukaoskid/covid19-opendata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

COVID-19 Open API

The COVID-19 (COronaVIrus Disease 2019) is an infectious disease caused by severe acute respiratory syndrome coronavirus (SARS-CoV-2). This disease has been first identified in China (Wuhan, Hubei province) at the end of 2019 and declared as a pandemic on March 11th, 2020.

Datasource

Data is taken from the Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE) GitHub. Their datasources are:

API structure

COVID-19 Open API is a structure that makes COVID-19 data availability as a service.

Examples

Hello world

curl --location --request GET 'http://api.covid19-opendata.online:30000/config'

Config

curl --location --request GET 'http://api.covid19-opendata.online:30000/config'

Find

curl --location --request POST 'http://api.covid19-opendata.online:30000/data/find' \
--header 'Content-Type: application/json' \
--data-raw '{
 "selector": {
  "country": "Italy"
 }
}'

Roadmap

I am looking for contributors in order to improve this system!

  • Geocoder performance improvements (actually on-going)
  • Aggregation API (a service which will allow to aggregate by a defined schema of properties).
  • Improve example charts on the frontend.