Skip to main content
POST
/
public
/
v1
/
query
/
get_wallet_address_balances

Authorizations

X-Stamp
string
required
Cryptographically signed (stamped) request to be passed in as a header. For more info, see here.

Body

organizationId
string
required
Unique identifier for a given organization.
address
string
required
Address corresponding to a wallet account.
caip2
enum<string>
required
Enum options: eip155:1, eip155:11155111, eip155:8453, eip155:84532, eip155:137, eip155:80002

Response

A successful response returns the following fields:
balances
array
List of asset balances
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_wallet_address_balances \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "address": "<string>",
    "caip2": "<eip155:1>"
}'
{
  "balances": [
    {
      "caip19": "<string>",
      "symbol": "<string>",
      "balance": "<string>",
      "decimals": "<number>",
      "display": {
        "usd": "<string>",
        "crypto": "<string>"
      },
      "name": "<string>"
    }
  ]
}