Balance

Get Balance

Endpoint: POST /getBalance

Description: Retrieves the total balances for a user, divided by network and token.

Request Parameters: None

Response:

[
  {
    "networkSymbol": "string",
    "tokenSymbol": "string",
    "balance": "string"
  }
]

Response Fields:

Field
Type
Description

networkSymbol

The network (e.g., ETH)

tokenSymbol

Optional token symbol (e.g., USDT)

balance

string

Balance amount (as a string to avoid precision issues)

Last updated

Was this helpful?