Skip to main content
GET
/
wallets
/
{uuid}
/
transactions
List wallet transactions
curl --request GET \
  --url https://api.truust.io/2.0/wallets/{uuid}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "amount": 123,
      "currency": "<string>",
      "status": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use your account's Secret Key as the Bearer token.

Path Parameters

uuid
string
required

Wallet UUID.

Query Parameters

page
integer
default:1

Page number for pagination.

Required range: x >= 1
date_begin
string<date>

Start date filter (ISO 8601).

Example:

"2024-01-01"

date_end
string<date>

End date filter (ISO 8601).

Example:

"2024-12-31"

Response

200 - application/json

List of transactions

data
object[]