> 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/cable-tv/fetch-billers.md).

# Fetch Billers For Provider

## Fetch Cable TV Billers

<mark style="color:blue;">`GET`</mark> `https://sagecloud.ng/api/v2/cable-tv/fetch-billers?type={service_type}`

This endpoint allows you to fetch cable-tv billers.\
\
Service types include dstv, gotv and startimes.

#### Query Parameters

| Name | Type   | Description      |
| ---- | ------ | ---------------- |
| type | string | The service type |

#### Headers

| Name          | Type   | Description             |
| ------------- | ------ | ----------------------- |
| Authorization | string | Check the Headers page. |

{% tabs %}
{% tab title="200 This is a sample response for startimes." %}

```
{
    "success": true,
    "plans": [
        {
            "id": 16,
            "type": "startimes",
            "code": "novaday",
            "name": "Nova (Antenna) - Daily",
            "description": "",
            "price": "90",
            "amount": "90"
        },
        {
            "id": 17,
            "type": "startimes",
            "code": "novaweek",
            "name": "Nova (Antenna) - Weekly",
            "description": "",
            "price": "300",
            "amount": "300"
        },
        {
            "id": 18,
            "type": "startimes",
            "code": "nova",
            "name": "Nova (Antenna) - Monthly",
            "description": "",
            "price": "900",
            "amount": "900"
        },
        {
            "id": 19,
            "type": "startimes",
            "code": "basicday",
            "name": " Basic (Antenna) - Daily",
            "description": "",
            "price": "160",
            "amount": "160"
        },
        {
            "id": 20,
            "type": "startimes",
            "code": "basicweek",
            "name": "Basic (Antenna) - Weekly",
            "description": "",
            "price": "600",
            "amount": "600"
        },
        {
            "id": 21,
            "type": "startimes",
            "code": "basic",
            "name": "Basic (Antenna) - Monthly",
            "description": "",
            "price": "1700",
            "amount": "1700"
        },
        {
            "id": 22,
            "type": "startimes",
            "code": "classicday",
            "name": "Classic (Antenna) - Daily",
            "description": "",
            "price": "320",
            "amount": "320"
        },
        {
            "id": 23,
            "type": "startimes",
            "code": "classicweek",
            "name": "Classic (Antenna) - Weekly",
            "description": "",
            "price": "1200",
            "amount": "1200"
        },
        {
            "id": 24,
            "type": "startimes",
            "code": "classic",
            "name": "Classic (Antenna) - Monthly",
            "description": "",
            "price": "2500",
            "amount": "2500"
        },
        {
            "id": 25,
            "type": "startimes",
            "code": "novadishday",
            "name": "Nova (Dish) - Daily",
            "description": "",
            "price": "90",
            "amount": "90"
        },
        {
            "id": 26,
            "type": "startimes",
            "code": "novadishweek",
            "name": "Nova (Dish) - Weekly",
            "description": "",
            "price": "300",
            "amount": "300"
        },
        {
            "id": 27,
            "type": "startimes",
            "code": "novadish",
            "name": "Nova (Dish) - Monthly",
            "description": "",
            "price": "900",
            "amount": "900"
        },
        {
            "id": 28,
            "type": "startimes",
            "code": "sportplus",
            "name": "Sport Plus (Dish) - Monthly",
            "description": "",
            "price": "1200",
            "amount": "1200"
        },
        {
            "id": 29,
            "type": "startimes",
            "code": "smartday",
            "name": "Smart (Dish) - Daily",
            "description": "",
            "price": "200",
            "amount": "200"
        },
        {
            "id": 30,
            "type": "startimes",
            "code": "smartweek",
            "name": "Smart (Dish) - Weekly",
            "description": "",
            "price": "700",
            "amount": "700"
        },
        {
            "id": 31,
            "type": "startimes",
            "code": "smart",
            "name": "Smart (Dish) - Monthly",
            "description": "",
            "price": "2200",
            "amount": "2200"
        },
        {
            "id": 32,
            "type": "startimes",
            "code": "superday",
            "name": "Super (Dish) - Daily",
            "description": "",
            "price": "400",
            "amount": "400"
        },
        {
            "id": 33,
            "type": "startimes",
            "code": "superweek",
            "name": "Super (Dish) - Weekly",
            "description": "",
            "price": "1500",
            "amount": "1500"
        },
        {
            "id": 34,
            "type": "startimes",
            "code": "super",
            "name": "Super (Dish) - Monthly",
            "description": "",
            "price": "4200",
            "amount": "4200"
        },
        {
            "id": 35,
            "type": "startimes",
            "code": "chinese",
            "name": "Startimes Chinese (Dish)",
            "description": "",
            "price": "6600",
            "amount": "6600"
        }
    ]
}
```

{% endtab %}

{% tab title="401 " %}

```
{    
    "message": "Unauthenticated."
}
```

{% endtab %}
{% endtabs %}
