Retrieve Wallet Assets

This method returns a list of all wallet assets for the authenticated user.
The response includes the total balance, available funds, and pending funds for each asset.
Provide your bearer token in the Authorization header when making requests to protected resources. Example: Authorization: Bearer 123.

Headers
string
required

Bearer token for authenticating the request. Example: Authorization: Bearer 123.

Responses

{
  "assets": [
    {
      "currency": {
        "_id": "123e4567-e89b-12d3-a456-426614174000",
        "code": "BTC",
        "symbol": "₿",
        "label": "Bitcoin",
        "decimal": "8",
        "logo": "https://example.com/btc-logo.png",
        "blockchainSymbol": "BTC",
        "blockchainMetaAlias": "bitcoin",
        "isNative": true
      },
      "total": 1.2345,
      "available": 0.9876,
      "pending": 0.2469
    }
  ]
}

{
  "error": "ERROR_ACCESS_TOKEN_INVALID",
  "message": "Access token is invalid.",
  "statusCode": 400
}

{
  "error": "ERROR_TOKEN_EXPIRED",
  "message": "Access token has expired.",
  "statusCode": 401
}
Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json