Skip to content

Convierte la data ofrecida por: the Johns Hopkins University Center en formato CSV al formato JSON sobre los casos confirmados, muertos y recuperados de COVID-19 por paises.

Notifications You must be signed in to change notification settings

gonzalezlrjesus/covid-19API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Covid-19 API en GO

Es una RESTFUL API por el cual se puede tener acceso a una serie de casos diarios (recuperados, muertos, confirmados) por paises.

Endpoints Version 1

/casos-confirmados

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

/casos-muertos

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

/casos-recuperados

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

EJEMPLO. Si desea utilizar la API en su proyecto:
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) [{…}, {…}, {…}, {…}, {…}, {…}, ...

Origen de los datos

https://github.com/CSSEGISandData/COVID-19

Licencia

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.

About

Convierte la data ofrecida por: the Johns Hopkins University Center en formato CSV al formato JSON sobre los casos confirmados, muertos y recuperados de COVID-19 por paises.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages