Enkash Developer Portal
Home
Home
Login
  1. APIs
  • Back to home
  • Bill Payment
  • APIs
    • Generate Authentication Token
      POST
    • Fetch Current Bill
      POST
    • Fetch Biller List
      GET
    • Fetch Biller Categories
      GET
    • Fetch Bulk Bill Details
      POST
    • Get Utility Bill By Reference ID
      GET
    • Get Utility Bill Status
      GET
    • Confirm Debit for Bill Payment
      PUT
    • Initiate Bill Payment via EnKash PG
      POST
    • Create Bill Without Bill Fetch
      POST
    • Create Bill After Successful Bill Fetch
      POST
  • Webhook
    • Setup Webhook Endpoint
  1. APIs

Fetch Biller Categories

GET
/api/v0/biller/billerType
Bill Payment
📌
Use this API to retrieve the list of biller categories supported by the BBPS platform.
This allows you to display or filter billers by category such as electricity, water, gas, telecom—making it easier for users to select the appropriate service when paying their bills.

Request

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

Request 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://test.your-api-server.com/api/v0/biller/billerType'

Responses

🟢200OK
application/json
Body
response_code
integer <int32>
optional
response_message
string 
optional
payload
array[object (BillerCategories) {2}] 
optional
billerType
string 
optional
label
string 
optional
Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": [
        {
            "billerType": "string",
            "label": "string"
        }
    ]
}
Modified at 2025-07-08 19:55:49
Previous
Fetch Biller List
Next
Fetch Bulk Bill Details
Built with