Skip to main content
GET
/
accounts
/
fees
/
{currency}
Get account fees and wallet balance
curl --request GET \
  --url https://api.truust.io/2.0/accounts/fees/{currency} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

currency
string

ISO 4217 currency code. Defaults to the account's base currency.

Example:

"EUR"

Response

200 - application/json

Wallet with fee information

id
integer
self
string
uuid
string
type
string | null

Wallet provider type (e.g. CLEARJUNCTION, CURRENCYCLOUD). Null for standard wallets.

balance
number<float>
Example:

250

currency
string
Example:

"EUR"

tag
string | null
metadata
object
created_at
string<date-time> | null
connections
object

Hypermedia links to related resources.