Retrieve Electricity Discos

Easily top up your meter

The Atlas API allows you to easily retrieve all available electricity discos by making a GET request to the endpoint /electricity/discos as show in the example below.

Example Request

var axios = require('axios');

var config = {
  method: 'get',
  url: 'https://integrations.getravenbank.com/v1/electricity/discos',
  headers: { }
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});

Example Response

{
  "status": "success",
  "message": "Electricity discos",
  "data": [
    {
      "code": "AEDC",
      "name": "ABUJA ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "KAEDC",
      "name": "KADUNA ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "JEDC",
      "name": "JOS ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "IKEDC",
      "name": "IKEJA ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "EKEDC",
      "name": "EKO ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "KEDC",
      "name": "KANO ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "EEDC",
      "name": "ENUGU ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "PHEDC",
      "name": "PORTHARCOURT ELECTRICITY DISTRIBUTION"
    },
    {
      "code": "iBEDC",
      "name": "IBADAN ELECTRICITY DISTRIBUTION"
    }
  ]
}
Language
Credentials
Header
Click Try It! to start a request and see the response here!