> For the complete documentation index, see [llms.txt](https://traveloapi.gitbook.io/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://traveloapi.gitbook.io/api/bbps-api/provider-lists.md).

# Provider Lists

## Get Biller Lists

<mark style="color:blue;">`GET`</mark> `https://traveloapi.com/yourapi/bbps/get_billers`&#x20;

#### Path Parameters

| Name   | Type   | Description           |
| ------ | ------ | --------------------- |
| gatkey | string | gatkey provided by us |

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "biller_list": [
    {
      "biller": "SERVICE NAME",
      "type": "TYPE",
      "biller_code": "SERVICE KEY",
      "tds": "TDS",
      "bill_fetch": "BILL FETCH",
      "bbps": "BBPS ENABLED",
      "amount_range": "Amtount Range",
      "min": "Min Length",
      "max": "Max Length",
      "param": " API PARAMETERS"
    },
    {
      "biller": "Adani Gas - GUJARAT",
      "type": "GAS",
      "biller_code": "ADG",
      "tds": "Yes",
      "bill_fetch": "Yes",
      "bbps": "Yes",
      "amount_range": "1 - 49999",
      "min": "10",
      "max": "10",
      "param": "pass Customer ID in 'account'"
    },
    {
      "biller": "Adani Gas - HARYANA",
      "type": "GAS",
      "biller_code": "AHG",
      "tds": "Yes",
      "bill_fetch": "Yes",
      "bbps": "Yes",
      "amount_range": "1 - 49999",
      "min": "10",
      "max": "10",
      "param": "pass Customer ID in 'account'"
    },
    {
      "biller": "Aircel",
      "type": "PREPAID",
      "biller_code": "ACP",
      "tds": "Yes",
      "bill_fetch": "No",
      "bbps": "No",
      "amount_range": "1 - 10000",
      "min": "10",
      "max": "10",
      "param": "pass Mobile Number in 'account'"
    },
    {
      "biller": "Aircel",
      "type": "POSTPAID",
      "biller_code": "ACC",
      "tds": "Yes",
      "bill_fetch": "No",
      "bbps": "No",
      "amount_range": "10 - 200000",
      "min": "10",
      "max": "10",
      "param": "pass Mobile Number in 'account'"
    },
    {
      "biller": "Airtel",
      "type": "PREPAID",
      "biller_code": "ATP",
      "tds": "Yes",
      "bill_fetch": "No",
      "bbps": "No",
      "amount_range": "1 - 10000",
      "min": "10",
      "max": "10",
      "param": "pass Mobile Number in 'account'"
    },
    {
      "biller": "Airtel",
      "type": "LANDLINE",
      "biller_code": "ATL",
      "tds": "Yes",
      "bill_fetch": "No",
      "bbps": "No",
      "amount_range": "10 - 10000",
      "min": "5",
      "max": "8",
      "param": "pass Landline Number in 'account' and STD Code in 'optional1'"
    },
    {
      "biller": "Airtel",
      "type": "POSTPAID",
      "biller_code": "ATC",
      "tds": "Yes",
      "bill_fetch": "No",
      "bbps": "No",
      "amount_range": "10 - 10000",
      "min": "10",
      "max": "10",
      "param": "pass Mobile Number in 'account'"
    },
    {
      "biller": "Airtel Digital TV",
      "type": "DTH",
      "biller_code": "ATV",
      "tds": "Yes",
      "bill_fetch": "No",
      "bbps": "No",
      "amount_range": "100 - 15000",
      "min": "10",
      "max": "10",
      "param": "pass Customer ID in 'account'"
    },  ]
      
}
```

{% endtab %}

{% tab title="404 " %}

```javascript
{
    "message": "invalid request"
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://traveloapi.gitbook.io/api/bbps-api/provider-lists.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
