Transaction
All Transactions

All Transaction

This endpoint allows you to view all the transactions.

How to View All Transactions

Here is a sample code for viewing all your transactions:

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

Method GET

  • Authorization : Pass your secret key as a bearer token in the request header to authorize this call.
import requestsurl = "https://api.chapa.co/v1/transactions"payload = {}headers = {  'Authorization': 'Bearer CHASECK_TEST-xxxxxxxxxxxxxxxx'}response = requests.request("GET", url, headers=headers, data=payload)print(response.text)