Public
Documentation Settings

covid-19-nigeria-api

covid-19-nigeria-api

A REST API to track confirmed coronavirus cases in Nigeria by state

COVID-19 Nigeria states data API

Coronavirus is sweeping through the world and confirmed cases in Nigeria are rising daily. The Nigerian government has no official public API yet. This API scrapes realtime data from the Nigeria Centre For Disease Control official website and exposes them as a REST API at https://covidnigeria.herokuapp.com/api

Usage

REST API Sample Usage

cURL Command:

Plain Text
curl --request GET "https://covidnigeria.herokuapp.com/api"

To run the server locally on your machine:

Plain Text
git clone https://github.com/sink-opuba/covid-19-nigeria-api.git
cd covid-19-nigeria
npm install

API - Sample JSON

Sample API Response obtained from https://covidnigeria.herokuapp.com/api

json
{
    "data": {
        "totalConfirmedCases": 174,
        "discharged": 9,
        "death": 2,
        "states": [
            {
                "id": 1,
                "AbujaFCT": 35
            },
            {
                "id": 2,
                "Abia": 0
            },
            {
                "id": 3,
                "Adamawa": 0
            },
            {
                "id": 4,
                "AkwaIbom": 5
            },
            {
                "id": 5,
                "Anambra": 0
            },
            {
                "id": 6,
                "Bauchi": 3
            },
            {
                "id": 7,
                "Bayelsa": 0
            },
            {
                "id": 8,
                "Benue": 1
            },
            {
                "id": 9,
                "Borno": 0
            },
            {
                "id": 10,
                "CrossRiver": 0
            },
            {
                "id": 11,
                "Delta": 0
            },
            {
                "id": 12,
                "Ebonyi": 0
            },
            {
                "id": 13,
                "Enugu": 2
            },
            {
                "id": 14,
                "Edo": 4
            },
            {
                "id": 15,
                "Ekiti": 2
            },
            {
                "id": 16,
                "Gombe": 0
            },
            {
                "id": 17,
                "Imo": 0
            },
            {
                "id": 18,
                "Jigawa": 0
            },
            {
                "id": 19,
                "Kaduna": 4
            },
            {
                "id": 20,
                "Kano": 0
            },
            {
                "id": 21,
                "Katsina": 0
            },
            {
                "id": 22,
                "Kebbi": 0
            },
            {
                "id": 23,
                "Kogi": 0
            },
            {
                "id": 24,
                "Kwara": 0
            },
            {
                "id": 25,
                "Lagos": 91
            },
            {
                "id": 26,
                "Nasarawa": 0
            },
            {
                "id": 27,
                "Niger": 0
            },
            {
                "id": 28,
                "Ogun": 4
            },
            {
                "id": 29,
                "Ondo": 0
            },
            {
                "id": 30,
                "Osun": 14
            },
            {
                "id": 31,
                "Oyo": 8
            },
            {
                "id": 32,
                "Plateau": 0
            },
            {
                "id": 33,
                "Rivers": 1
            },
            {
                "id": 34,
                "Sokoto": 0
            },
            {
                "id": 35,
                "Taraba": 0
            },
            {
                "id": 36,
                "Yobe": 0
            },
            {
                "id": 37,
                "Zamfara": 0
            }
        ]
    }
}

Contribution

Pull requests are welcomed to make changes. To make drastic changes, open an issue to discuss.

Contact

Mail me at sinkopus2000@gmail.com for further queries

License

MIT