JovanyNegocio / covid-19-ao-api

Covid-19 Ao Api is an Angolan API created to show in real time the information about the cases of the corona virus detected in the Angolan territory.

Home Page:https://covid19ao.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Covid-19 Ao Api

covid19ao

Covid-19 Ao Api is an Angolan API created to show in real time the information about the cases of the corona virus detected in the Angolan territory.

Click here to see results in your browser

Covid-19 Ao (Plataform)

In the home directory, you can find the platform, which can provide the same results as the API, also accompanied by "prevention tips", an online test for self-diagnosis of covid-19 disease and a list of services in which they can be ordered from home (only in Angola).

Endpoitns

Endpoint Description Type
https://covid19ao.com/api/general It returns the lastest update from governmant reports. Object
https://covid19ao.com/api/report It returns the updates from each day, since the API was created. Array of objects
https://covid19ao.com/api/tips?lang=pt It returns prevention tips in portuguese. You can change the language (available in: en, pt, es, fr) Array of objects
https://covid19ao.com/api/services?lang=pt It returns a list of services in portuguese. You can change the language (available in: en, pt, es, fr) Array of objects
https://covid19ao.com/api/services/1?lang=pt Returns a list of all services that belong to the category with ID 1 in Portuguese. You can change the language (available in: en, pt, es, fr) Array of objects

Usage (Javascript)

fetch(`https://covid19ao.com/api/general/`, {
        method: 'get',
        headers: {
            'Content-Type': 'application/json'
        },

    }).then((response) => response.json())
        .then((res) => {
            console.log(res)
        }).catch((error) => {
            console.error(error)
    });

Usage (Php)

$url ='https://covid19ao.com/api/general/';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
$response = trim(curl_exec($ch));
curl_close($ch);

echo $response;

Usage (Python)

response = requests.get('https://covid19ao.com/api/general/')
print(response)

Usage (Dart)

import 'package:http/http.dart' as http;

Future<http.Response> fetchPhone() {
  return http.get('https://covid19ao.com/api/general/');
}

Usage (Go)

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func Fetch() {
  url := fmt.Sprintf("https://covid19ao.com/api/general")

  client := &http.Client {}
  req, err := http.NewRequest("GET", url, nil)

  if err != nil {
    fmt.Println(err)
  }
  res, err := client.Do(req)
  defer res.Body.Close()
  body, err := ioutil.ReadAll(res.Body)

  fmt.Println(string(body))
}

Contributing

You can always contribute for the improvment of this project, send an email to join this project.

About

Covid-19 Ao Api is an Angolan API created to show in real time the information about the cases of the corona virus detected in the Angolan territory.

https://covid19ao.com


Languages

Language:PHP 76.0%Language:Vue 19.4%Language:HTML 4.6%