TransactionAll 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.
1import requests
2
3url = "https://api.chapa.co/v1/transactions"
4
5payload = {}
6headers = {
7 'Authorization': 'Bearer CHASECK_TEST-xxxxxxxxxxxxxxxx'
8}
9
10response = requests.request("GET", url, headers=headers, data=payload)
11
12print(response.text)
13
14