curl --request GET \
  --url https://testnet.walletkit.com/tokens/balances \
  --header 'Authorization: Bearer <token>'
[
  {
    "uuid": "<string>",
    "network": "Ethereum",
    "contract_address": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "decimals": 123,
    "display_decimals": 123,
    "logo_url": "<string>",
    "raw_balance": "<string>",
    "display_balance": "<string>"
  }
]

Headers

X-WalletKit-Project-ID
string
required

Your WalletKit Project ID can be found on the API Keys page in the WalletKit Dashboard.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

network
enum<string>
required
Available options:
Ethereum,
Polygon,
Base,
Avalanche,
Polkadot,
Vara
wallet_address
string
required

Response

200
application/json
uuid
string
required
network
enum<string>
required
Available options:
Ethereum,
Polygon,
Base,
Avalanche,
Polkadot,
Vara
contract_address
string
required
name
string
required
symbol
string
required
decimals
integer
required
display_decimals
integer
required
logo_url
string
required
raw_balance
string
required
display_balance
string
required