Public
Documentation Settings

chile-coronapi

API to obtain data about coronavirus infections (COVID-19) in Chile. The official repo of this project can be found here. This project uses official data from the Government of Chile and the Ministry of Health. The data is handled in the covid19-data repository and is updated in near real time. For more information, review other interesting facts about the coronavirus in Chile or review how scraping is performed, refer to that repository.

This API is open and can be used in any project. The data source is from the official figures published by the Government of Chile and the Ministry of Health on their respective websites. For the data used in this API, the update is practically in real time, through scraping. This API consumes the data directly from that repository, so the response times are quite good and it is usually less than 500 milliseconds.

GEThttps://chile-coronapi.herokuapp.com/api/v3/historical/nation

https://chile-coronapi.herokuapp.com/api/v3/historical/nation

The national data is obtained from march 7 to the present day. Includes confirmed infections, deaths and "recovered" (according to the government, at least, that data is still quite questionable).

Example Request
curl
curl --location 'https://chile-coronapi.herokuapp.com/api/v3/historical/nation' \
--data ''
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GEThttps://chile-coronapi.herokuapp.com/api/v3/historical/regions

https://chile-coronapi.herokuapp.com/api/v3/historical/regions

Historical data of infected and deaths by region are obtained. In the case of the infected, the data is available from march 7 until today. In the case of deaths, the data is only available from April 1, which is where the government has published the official figures.

Example Request
curl
curl --location 'https://chile-coronapi.herokuapp.com/api/v3/historical/regions' \
--data ''
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GEThttps://chile-coronapi.herokuapp.com/api/v3/historical/communes

https://chile-coronapi.herokuapp.com/api/v3/historical/communes

Historical data for all the communes. In this case, only the confirmed infected are available, which is the only thing that the government has officially delivered. Usually a 0 represents that there is no significant data for this commune.

Example Request
curl
curl --location 'https://chile-coronapi.herokuapp.com/api/v3/historical/communes' \
--data ''
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GEThttps://chile-coronapi.herokuapp.com/api/v3/latest/nation

https://chile-coronapi.herokuapp.com/api/v3/latest/nation

National data for the last day that the government has made a report. The government currently makes a report every morning, with the data cut until the day before 9:00 p.m.

Example Request
curl
curl --location 'https://chile-coronapi.herokuapp.com/api/v3/latest/nation' \
--data ''
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers