Skip to main content
GET
/
api
/
transactions
List Transactions
curl --request GET \
  --url http://127.0.0.1:8083/api/transactions \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
[
  {
    "id": "<string>",
    "reference_id": "<string>",
    "type": "<string>",
    "status": "<string>",
    "sender_amount": 123,
    "receiver_amount": 123,
    "exchange_rate": 123,
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-API-Key
string
header
required

Includes an API key in the HTTP headers to authenticate the client.

X-API-Secret
string
header
required

Includes an API secret in the HTTP headers to authenticate the client.

Query Parameters

page_number
integer<int32>
required

Page Number

page_size
integer<int32>
required

Page Size

Response

Operation Successful

id
string

Transaction ID

reference_id
string

External Reference ID

type
string

Transaction Type: deposit, transfer, exchange

status
string

Status

sender_amount
number

Sender Amount

receiver_amount
number

Receiver Amount

exchange_rate
number

Exchange Rate

created_at
string<date-time>

Created At