Skip to main content
GET
/
wallet-infra
/
master-wallets
/
{id}
/
balances
Get managed wallet balances
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.prudra.dev/wallet-infra/master-wallets/{id}/balances', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
[
  {
    "tokenSymbol": "USDC",
    "formattedBalance": "100.00",
    "rawBalance": "100000000",
    "chain": "base"
  }
]

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.

Authorizations

Authorization
string
header
required

Your Prudra API key. Get one at dashboard.prudra.com/settings/api-keys

Path Parameters

id
string
required

Response

200 - application/json

Token balances

tokenSymbol
string
Example:

"USDC"

formattedBalance
string
Example:

"100.00"

rawBalance
string
Example:

"100000000"

chain
string
Example:

"base"