Skip to main content
GET
/
{chainId}
/
balances
/
{address}
Get Balances
curl --request GET \
  --url https://api.caminotreasury.com/v1/{chainId}/balances/{address} \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "token": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
      "name": "USDC",
      "symbol": "USDC",
      "raw": "1000000000",
      "decimals": 6
    }
  ],
  "count": 123
}

Authorizations

x-api-key
string
header
required

API key for authentication. Pass your key in the x-api-key header.

Path Parameters

chainId
integer
required

Blockchain chain ID

address
string
required

Ethereum wallet address

Pattern: ^0x[a-fA-F0-9]{40}$

Response

Array of token balances

data
object[]
count
integer

Number of items returned