GET
/
v1
/
api
/
wallet_balances
curl --request GET \
  --url https://earn.turtle.vision/v1/api/wallet_balances
{
  "balances": [
    {
      "token": {
        "address": "<string>",
        "name": "<string>",
        "symbol": "<string>",
        "logos": [
          "<string>"
        ],
        "decimals": 123,
        "chain": 123,
        "price": 123
      },
      "amount": "<string>"
    }
  ]
}

Query Parameters

user
string
required

The user's EOA (Externally Owned Account) address.

chain
integer
required

The chain ID for which to query balances.

Response

200 - application/json; charset=utf-8

Response containing a list of wallet balances.