Enkash Developer Portal
Home
Home
Login
  1. Fetch Bill
  • Back to home
  • APIs - BBPS
  • Bill Payment
    • Webhook
      • Setup Webhook Endpoint
    • Create Bill
      • Create Bill Without Bill Fetch
      • Create Bill After Successful Bill Fetch
    • Fetch Bill
      • Fetch Current Bill
        POST
      • Fetch Biller List
        GET
      • Fetch Biller Categories
        GET
      • Prepaid Plan
        GET
      • Fetch Bulk Bill Details
        POST
      • Get Utility Bill By Reference ID
        GET
      • Get Utility Bill Status
        GET
    • Payment
      • Confirm Debit for Bill Payment
      • Initiate Bill Payment via EnKash PG
    • Generate Authentication Token
      POST
  • Vendor Payment
    • Business Onboarding
      • Initiate Entity Check
      • Register Entity
      • Bharat Connect B2B ID Registration
      • Search Entity
    • Invoice
      • Create Invoice
      • Confirm Invoice
      • Change Invoice Status
      • Edit Invoice
    • Payment
      • Pay Invoice
      • Payment Confirmation
    • Purchase Order
      • Send Purchase Order Request
      • Confirm Purchase Order
      • Edit Purchase Order
      • Change Purchase Order Status
    • Credit Note
      • Send C/N Request
      • Confirm C/N Request
      • Status Change C/N Request
    • Financing
      • Request Financing
      • Share Bid
      • Respond To Bid
    • Webhook
      • Business Onboarding
        • Check Entity Webhook
        • Entity Registration Response Webhook
        • Search Entity Response Webhook
        • Registration ID Response Webhook
      • Invoice
        • Create Invoice Request Webhook
        • Create Invoice Response Webhook
        • Confirm Invoice Request Webhook
        • Confirm Invoice Response Webhook
        • Status Change Invoice Request
        • Status Change Invoice Response Webhook
        • Edit Invoice Request Webhook
        • Edit Invoice Response Webhook
      • Payment
        • Payment Response Webhook
        • Payment Confirmation Response Webhook
        • Payment Request Webhook
        • Payment Confirmation Request Webhook
      • Credit Note
        • Send C/N RequestWebhook
        • Send C/N Response Webhook
        • Confirm C/N Request Webhook
        • Confirm C/N Response Webhook
        • Status Change C/N Request Webhook
        • Status Change C/N Response Webhook
      • Purchase Order
        • Send Purchase Order Request Webhook
        • Send Purchase Order Response Webhook
        • Confirm Purchase Order Request Webhook
        • Confirm Purchase Order Response Webhook
        • Edit Purchase Order Request Webhook
        • Edit Purchase Order Response Webhook
        • Status Change Purchase Order Request Webhook
        • Status Change Purchase Order Response Webhook
      • Financing
        • Financing Response Webhook
        • Respond Bid Response Webhook
        • Share Bid Request Webhook
    • Generate Authentication Token
Home
Home
Login
  1. Fetch Bill

Fetch Biller List

GET
/api/v2/biller
💡
This API allows you to retrieve a list of billers supported by BBPS.
It accepts two optional parameters:
billerType: Returns the list of billers for a specific category (for example, electricity, water, telecom).
stateCode: Returns the list of billers available for a specific state code.
Note:
If both billerType and stateCode are not provided, the API will return all supported billers, which may result in a very large response payload. It is recommended to use at least one of these parameters to narrow down the results and optimize performance.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://pay-en-uat.enkash.in/api/v2/biller?billerType&stateCode' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": 0,
    "response_message": "Success",
    "payload": [
        {
            "billerId": 12345,
            "name": "Electricity Company XYZ",
            "billerType": "ELECTRICITY",
            "inputParams": [
                {
                    "paramKey": "cn",
                    "paramName": "Consumer ID",
                    "paramType": "NUMBER",
                    "paramRegex": "^[0-9]{10}$",
                    "invalidParamError": "Consumer ID must be a 10-digit number",
                    "mandatory": true,
                    "paramValues": []
                },
                {
                    "paramKey": "ad1",
                    "paramName": "Billing Month",
                    "paramType": "NUMBER",
                    "paramRegex": "^(0?[1-9]|1[0-2])$",
                    "invalidParamError": "Please enter a valid month (1-12)",
                    "mandatory": true,
                    "paramValues": [
                        {
                            "key": "1",
                            "value": "January"
                        },
                        {
                            "key": "2",
                            "value": "February"
                        },
                        {
                            "key": "3",
                            "value": "March"
                        }
                    ]
                }
            ],
            "circleParams": [
                {
                    "key": "circle",
                    "value": "AP"
                },
                {
                    "key": "region",
                    "value": "South"
                }
            ],
            "paymentAmountExactness": "EXACT",
            "state": "ANDAMAN_AND_NICOBAR_ISLANDS",
            "circleStateMapping": {
                "AP": "ANDAMAN_AND_NICOBAR_ISLANDS"
            },
            "viewBillSupported": true
        }
    ]
}
Modified at 2025-12-24 17:37:07
Previous
Fetch Current Bill
Next
Fetch Biller Categories
Built with