GET
/
users
/
{user_address}
/
erc20_balances
Get ERC20 balances for a user
curl --request GET \
  --url https://api-testnet.gte.xyz/v1/users/{user_address}/erc20_balances
[
  {
    "address": "<string>",
    "balance": "<string>",
    "supply": "<string>"
  }
]

Path Parameters

user_address
string
required

EVM address

Response

List of ERC20 balances

address
string
required

Address of the ERC20 token

balance
string
required

Balance of the token (U256, decimal string)

supply
string
required

Supply of the token (U256, decimal string)