Es una RESTFUL API por el cual se puede tener acceso a una serie de casos diarios (recuperados, muertos, confirmados) por paises.
Peticion:
GET https://covid-19-api-go.herokuapp.com/v1/casos-confirmados
Curl:
curl -X GET "https://covid-19-api-go.herokuapp.com/v1/casos-confirmados"
Navegador:
https://covid-19-api-go.herokuapp.com/v1/casos-confirmados
Peticion:
GET https://covid-19-api-go.herokuapp.com/v1/casos-muertos
Curl:
curl -X GET "https://covid-19-api-go.herokuapp.com/v1/casos-muertos"
Navegador:
https://covid-19-api-go.herokuapp.com/v1/casos-muertos
Peticion:
GET https://covid-19-api-go.herokuapp.com/v1/casos-recuperados
Curl:
curl -X GET "https://covid-19-api-go.herokuapp.com/v1/casos-recuperados"
Navegador:
https://covid-19-api-go.herokuapp.com/v1/casos-recuperados
fetch('https://covid-19-api-go.herokuapp.com/v1/casos-recuperados')
.then(response => response.json())
.then(data => {
let Venezuela = data.paises.find((pais) => {
return pais["Country/Region"] === 'Venezuela';
});
console.log(Venezuela);
})
Province/State: ""
Country/Region: "Venezuela"
Lat: "6.4238"
Long: "-66.5897"
actualizacion_dia: "2020-03-30T12:25:31.630935758Z"
Dias: (68) [{…}, {…}, {…}, {…}, {…}, {…}, ...
https://github.com/CSSEGISandData/COVID-19
MIT License 2020, gonzalezlrjesus.
Transitivamente desde el sitio de the Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE), los datos no pueden ser utilizados con fines comerciales.