curl --request GET \
--url https://api.hyperline.co/v1/wallets/{id}/transactions \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "walt_FCihRDLYhKpSpL",
"type": "credit_paid",
"amount": 12000,
"invoice_id": "<string>",
"created_at": "2024-12-20T16:04:11Z"
}
]
}
Retrieve all transactions of an existing wallet.
curl --request GET \
--url https://api.hyperline.co/v1/wallets/{id}/transactions \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "walt_FCihRDLYhKpSpL",
"type": "credit_paid",
"amount": 12000,
"invoice_id": "<string>",
"created_at": "2024-12-20T16:04:11Z"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
0 <= x <= 100
x >= 0
Paginated list of wallet transactions
The response is of type object
.
Was this page helpful?