Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ravelinodecastro/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.
https://github.com/ravelinodecastro/covid-19-ao-api

angola covid-19 javascript laravel php vuejs

Last synced: 3 months ago
JSON representation

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.

Awesome Lists containing this project

README

        

## Covid-19 Ao Api
![covid19ao](screenshot_covid19ao.png)

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](https://covid19ao.com/api/general)

## Covid-19 Ao (Plataform)
[In the home directory](https://covid19ao.com/), 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)

```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)

```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)

```python

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

---
## Usage (Dart)

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

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

---
## Usage (Go)

```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.