The billers endpoint returns the bank codes you need when specifying a receiverBankCode or bankCode in transfer and payout requests.
Endpoint
GET /clients/settings/billers
Response
Array of biller identifier strings representing supported bank codes.
Code examples
curl -X GET https://sandbox.stellasbank.com/api/v1/clients/settings/billers \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "SECRET_KEY: YOUR_SECRET_KEY" \
-H "businessId: YOUR_BUSINESS_ID"
Example response
{
"status": true,
"message": "Billers retrieved successfully",
"data": {
"billers": ["044", "058", "011", "033", "035", "070", "076", "232"]
}
}