> ## Documentation Index
> Fetch the complete documentation index at: https://developer.nomba.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Electricity Providers (Discos)

> Get a list of the available electricity providers

## `GET /v1/bill/electricity/discos`

#### Response body

<ResponseField name="code" type="string" required>
  Response code
</ResponseField>

<ResponseField name="description" type="string" required>
  Response description
</ResponseField>

<ResponseField name="data" type="object[]">
  List of available electricity providers

  <Expandable title="object" defaultOpen="true">
    <ResponseField name="id" type="string" required>
      The corresponding id for this provider
    </ResponseField>

    <ResponseField name="name" type="string" required>
      The pretty name for this provider
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash Request theme={null}
  curl --location 'https://api.nomba.com/v1/bill/electricity/discos' \
  --header 'accountId: <accountId>' \
  --header 'Authorization: <token>'
  ```
</RequestExample>

<ResponseExample>
  ```json Success response theme={null}
  {
      "code": "00",
      "description": "SUCCESS",
      "data": [
          {
              "id": "phed",
              "name": "Port Harcourt (PHED)"
          },
          {
              "id": "jed",
              "name": "Jos Electric (JEDC)"
          },
          {
              "id": "kaduna",
              "name": "Kaduna Electric (KAEDCO)"
          },
          {
              "id": "ibedc",
              "name": "Ibadan Electric (IBEDC)"
          },
          {
              "id": "eko",
              "name": "Eko Electric (EKEDC)"
          },
          {
              "id": "benin",
              "name": "Benin Electric (BEDC)"
          },
          {
              "id": "abuja",
              "name": "Abuja Electric (AEDC)"
          },
          {
              "id": "kano",
              "name": "Kano Electric (KEDCO)"
          },
          {
              "id": "ikeja",
              "name": "Ikeja Electric (IKEDC)"
          },
          {
              "id": "enugu",
              "name": "Enugu Electric (EEDC)"
          }
      ]
  }
  ```
</ResponseExample>
