> For the complete documentation index, see [llms.txt](https://capitalsage.gitbook.io/sagecloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://capitalsage.gitbook.io/sagecloud/data/fetch-data-providers.md).

# Fetch Data Providers

## Fetch Data Providers

<mark style="color:blue;">`GET`</mark> `https://sagecloud.ng/api/v2/internet/data/fetch-providers`

This endpoint allows you to get data providers.

#### Headers

| Name          | Type   | Description             |
| ------------- | ------ | ----------------------- |
| Authorization | string | Checks the Headers page |

{% tabs %}
{% tab title="200 Providers successfully retrieved." %}

```
{
    "success": true,
    "billers": [
        {
            "type": "MTNDATA",
            "id": 1,
            "name": "MTN",
            "narration": "MTN Data",
            "image": ""
        },
        {
            "type": "AIRTELDATA",
            "id": 2,
            "name": "AIRTEL",
            "narration": "AIRTEL Data",
            "image": ""
        },
        {
            "type": "GLODATA",
            "id": 3,
            "name": "GLO",
            "narration": "GLO Data",
            "image": ""
        },
        {
            "type": "9MOBILEDATA",
            "id": 4,
            "name": "9MOBILE",
            "narration": "9MOBILE Data",
            "image": ""
        }
    ]
}
```

{% endtab %}
{% endtabs %}
