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

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