Skip to main content

Get wallet balance

GET 

/digital-wallets/:id/balance

Retrieves the balance for a specific wallet. This endpoint:

  • Returns the current balance for the wallet
  • Includes all balance types (available, reserved, pending)
  • Provides current status and configuration

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...