curl --request GET \
--url https://app.dynamicauth.com/api/v0/chains/{chainName}/tokens \
--header 'Authorization: Bearer <token>'
[
{
"name": "Shiba Inu",
"symbol": "SHIB",
"tokenAddresses": [
{
"networkId": 1,
"contractAddress": "0xbF394748301603f18d953C90F0b087CBEC0E1834"
}
]
}
]
curl --request GET \
--url https://app.dynamicauth.com/api/v0/chains/{chainName}/tokens \
--header 'Authorization: Bearer <token>'
[
{
"name": "Shiba Inu",
"symbol": "SHIB",
"tokenAddresses": [
{
"networkId": 1,
"contractAddress": "0xbF394748301603f18d953C90F0b087CBEC0E1834"
}
]
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Shortened chain name
ETH
, EVM
, FLOW
, SOL
, ALGO
, STARK
, COSMOS
, BTC
, ECLIPSE
Get all tokens for chain
The response is of type object[]
.
Was this page helpful?