Transfer
Bank List

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.
import requests    url = "https://api.chapa.co/v1/banks"    payload = ''    headers = {        'Authorization': 'Bearer CHASECK-xxxxxxxxxxxxxxxx'    }          response = requests.get(url, headers=headers, data=payload)    data = response.text    print(data)

ℹ️
Refer to our Error Codes page for all responses for this request.