Skip to main content
GET
/
bbps
/
cou
/
v1
/
billers
/
categories
Fetch Biller Categories
curl --request GET \
  --url https://sandbox.cashfree.com/bbps/cou/v1/billers/categories \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
  "status": "OK",
  "message": "Biller categories fetched successfully",
  "data": [
    "BROADBAND_POSTPAID",
    "CABLE_TV",
    "CLUBS_AND_ASSOCIATIONS",
    "CREDIT_CARD",
    "DTH",
    "EDUCATION",
    "ELECTRICITY",
    "FASTAG",
    "GAS",
    "HOSPITAL",
    "INSURANCE",
    "LOAN_REPAYMENT",
    "MOBILE_POSTPAID",
    "SUBSCRIPTION",
    "WATER"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.cashfree.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-client-id
string
header
required

Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.

x-client-secret
string
header
required

Your unique client secret issued by Cashfree. Keep this confidential and never expose it in client-side code. You can find this in your Merchant Dashboard.

Response

Success response for fetching all active biller categories available on the BBPS network.

status
string

Always "OK" on success.

Example:

"OK"

message
string
Example:

"Biller categories fetched successfully"

data
string[]

Alphabetically sorted list of biller category codes.

Example:
[
"BROADBAND_POSTPAID",
"CABLE_TV",
"CLUBS_AND_ASSOCIATIONS",
"CREDIT_CARD",
"DTH",
"EDUCATION",
"ELECTRICITY",
"FASTAG",
"GAS",
"HOSPITAL",
"INSURANCE",
"LOAN_REPAYMENT",
"MOBILE_POSTPAID",
"SUBSCRIPTION",
"WATER"
]