TransferAll Transfers

All Transfers

This section describes how to get all your transfers with Chapa.

Endpoint https://api.chapa.co/v1/transfers

Method GET

  • Authorization : Pass your secret key as a bearer token in the request header to authorize this call.
1import requests
2
3 url = "https://api.chapa.co/v1/transfers"
4
5 payload = ""
6 headers = {
7 'Authorization': 'Bearer CHASECK-xxxxxxxxxxxxxxxx'
8 }
9
10 response = requests.request("GET", url, headers=headers, data=payload)
11
12 print(response.text)
13
14

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