GET
/
bridge-swap
/
balances
/
{walletAddress}
curl --request GET \
  --url https://bridge-swap.aarc.xyz/bridge-swap/balances/{walletAddress} \
  --header 'x-api-key: <api-key>'
{
  "balances": [
    {
      "chainId": 123,
      "tokenAddress": "<string>",
      "symbol": "<string>",
      "balance": "<string>",
      "decimals": 123
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key required for authentication

Headers

x-api-key
string
required

API key for authentication

Path Parameters

walletAddress
string
required

The wallet address to check balances for

Response

200
application/json

Successfully retrieved wallet balances

The response is of type object.