chains
Get tokens for passed chainName.
GET
/
chains
/
{chainName}
/
tokens
Authorization
Path
Query
curl --request GET \
--url https://app.dynamicauth.com/api/v0/chains/{chainName}/tokens \
--header 'Authorization: <authorization>'
[
{
"name": "Shiba Inu",
"symbol": "SHIB",
"tokenAddresses": [
{
"contractAddress": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
"networkId": 1
}
]
}
]
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
chainName
enum<string>
requiredShortened chain name
Available options:
ETH
, EVM
, FLOW
, SOL
, ALGO
, STARK
, COSMOS
Query Parameters
networkId
number
Response
200 - application/json
name
string
requiredName of the token
symbol
string
requiredSymbol of the token
tokenAddresses
object[]
requiredArray of different contract addresses dependent to networkId
curl --request GET \
--url https://app.dynamicauth.com/api/v0/chains/{chainName}/tokens \
--header 'Authorization: <authorization>'
[
{
"name": "Shiba Inu",
"symbol": "SHIB",
"tokenAddresses": [
{
"contractAddress": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
"networkId": 1
}
]
}
]