bankId is required when creating recipients or initiating bank transfers.
Endpoints
Query Parameters
Bank Object
Example Request
Supported Countries
⟡
API Reference
Explore the complete API reference
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Access bank reference data for supported countries
bankId is required when creating recipients or initiating bank transfers.
| Endpoint | Method | Description |
|---|---|---|
/bila/banks | GET | List all supported banks |
| Parameter | Type | Description |
|---|---|---|
country | string | Filter banks by country code (zm) |
{
"id": "bank-001",
"name": "Zambia National Commercial Bank",
"code": "ZNBC",
"country": "zm",
"type": "bank"
}
curl -X GET "https://api.usebila.com/api/v1/bila/banks?country=zm" \
-H "x-api-key: sk_test_your_api_key"
const response = await fetch('https://api.usebila.com/api/v1/bila/banks?country=zm', {
headers: { 'x-api-key': 'sk_test_your_api_key' }
});
const banks = await response.json();
| Country | Code | Banks Available |
|---|---|---|
| Zambia | zm | All major banks |
Was this page helpful?
