curl --request GET \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/chains/{chainName}/balances \
--header 'Authorization: Bearer <token>'
[
{
"networkId": 123,
"address": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"logoURI": "<string>",
"balance": 123,
"rawBalance": 123,
"price": 123,
"marketValue": 123,
"liquidityPoolSizeUsd": 123
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the environment
36
"95b11417-f18f-457f-8804-68e361f9164f"
ETH
, EVM
, FLOW
, SOL
, ALGO
, STARK
, COSMOS
, BTC
, ECLIPSE
, SUI
Valid Eth, Solana, Btc, and Sui, Flow, and Cosmos wallet addresses
If false, the balance requests will not be filtered for spam tokens
Contracts to not filter out in the response
If true, the balance requests will be refreshed within rate limits
List of token balances
The response is of type object[]
.
curl --request GET \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/chains/{chainName}/balances \
--header 'Authorization: Bearer <token>'
[
{
"networkId": 123,
"address": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"logoURI": "<string>",
"balance": 123,
"rawBalance": 123,
"price": 123,
"marketValue": 123,
"liquidityPoolSizeUsd": 123
}
]