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

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:1

Page number for pagination.

Required range: x >= 1
per_page
integer
default:15

Number of results per page.

Required range: 1 <= x <= 100

Response

200 - application/json

List of wallets

data
object[]