Documentation Index
Fetch the complete documentation index at: https://docs.prudra.dev/llms.txt
Use this file to discover all available pages before exploring further.
Check a wallet balance
The balance endpoint returns current token balances for a managed wallet or child address. Balances are retrieved in real time from the blockchain RPC.- Dashboard
- SDK
- cURL
Dashboard support for viewing wallet balances is coming soon. Use the SDK or cURL to query balances.
Response fields
| Field | Type | Description |
|---|---|---|
tokenSymbol | string | Token ticker, e.g. "USDC", "USDT" |
tokenAddress | string | The ERC-20 contract address for this token |
rawBalance | string | Balance in token base units (e.g. "10500000" for 10.5 USDC with 6 decimals) |
formattedBalance | string | Human-readable balance with decimal point (e.g. "10.50") |
chain | string | Chain name (e.g. "base") |
chainId | number | Numeric chain ID |
decimals | number | Token decimals (USDC: 6, most others: 18) |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
walletId | string | Yes | The wallet ID (mwt_...) or child address ID (caddr_...) |
walletType | string | Yes | "master" or "child" |
What an empty balance means
Ifbalances is an empty array:
- The wallet address has not received any funds yet
- Or funds were sent in a token not listed in
supportedTokens - Or the RPC is temporarily unable to retrieve the balance
address field of the wallet object.
Next steps
- View transaction history — see all inbound and outbound transactions
- Send a transfer — move funds out of this wallet
- Request a withdrawal — convert to fiat and wire to bank

