Skip to main content

Get wallet balance

GET 

/digital-wallets/:id/balance

This endpoint retrieves the asset balances for a specified wallet. For each balance type (Available, Pending and Reserved), the endpoint returns:

  • The asset (e.g. USD, BTC, ETH)
  • The asset balance.

Request

Path Parameters

    id stringrequired

Responses

Wallet balance retrieved with success

Schema

    traceId string
    message string

    data

    object

    AVAILABLE

    object[]

    required

    Available balances for all supported assets

  • Array [

  • asset stringrequired

    Asset acronym (e.g., USD, BTC, ETH)

    amount stringrequired

    Amount of the asset

  • ]

  • RESERVED

    object[]

    required

    Reserved balances for all supported assets

  • Array [

  • asset stringrequired

    Asset acronym (e.g., USD, BTC, ETH)

    amount stringrequired

    Amount of the asset

  • ]

  • PENDING

    object[]

    required

    Pending balances for all supported assets

  • Array [

  • asset stringrequired

    Asset acronym (e.g., USD, BTC, ETH)

    amount stringrequired

    Amount of the asset

  • ]

Loading...