GET
/
v1
/
wallets
/
{wallet_id}
/
balance
curl --request GET \
  --url https://api.privy.io/v1/wallets/{wallet_id}/balance \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'privy-app-id: <privy-app-id>'
{
  "balances": [
    {
      "chain": "ethereum",
      "asset": "usdc",
      "raw_value": "<string>",
      "raw_value_decimals": 123,
      "display_values": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

App secret authentication.

Headers

privy-app-id
string
required

ID of your Privy app.

Path Parameters

wallet_id
string
required

ID of the wallet.

Query Parameters

asset
required
Available options:
usdc,
eth
chain
required
Available options:
ethereum,
arbitrum,
base,
linea,
optimism,
zksync_era
include_currency
enum<string>
Available options:
usd

Response

200 - application/json
Latest wallet balance.

The response is of type object.