Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Required range:
0 <= x <= 100Required range:
x >= 0curl --request GET \
--url https://api.hyperline.co/v1/wallets/{id}/transactions \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"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,
"approximateCount": false
},
"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 <= 100x >= 0Was this page helpful?