List Banks
This section describes how to get bank details for all supported banks we are working with. This API returns all the Banks information for all currencies.
Endpoint https://api.chapa.co/v1/banks
Method GET
Authorization
: Pass your secret key as a bearer token in the request header to authorize this call.
1import requests23 url = "https://api.chapa.co/v1/banks"4 payload = ''5 headers = {6 'Authorization': 'Bearer CHASECK-xxxxxxxxxxxxxxxx'7 }8 9 response = requests.get(url, headers=headers, data=payload)10 data = response.text11 print(data)
ℹ️
Refer to our Error Codes page for all responses for this request.