GET /trade/v1/info/tokenLogo/{chainId}/{tokenAddress}
This endpoint returns the token logo of a given token. It's an image.
Authorizations
Path parameters
tokenAddressstringRequiredExample:
The address of the token to get the info.
0x55d398326f99059ff775485246999027b3197955
chainIdnumber · enumRequiredExample:
The chain ID of the chain to get the information.
56
Possible values: Responses
200
Token information
application/json
get
GET /trade/v1/info/tokenLogo/{chainId}/{tokenAddress} HTTP/1.1
Host:
Authorization: Bearer Bearer
Accept: */*
200
Token information
{
"circulatingSupply": 156165165,
"description": "Unizen (ZCX) is a cryptocurrency launched ...",
"marketCap": 39434678,
"maxSupply": 156165165,
"priceInUsd": 0.1,
"symbol": "ZCX",
"name": "Unizen",
"decimals": 18,
"totalSupply": 156165165,
"volume24h": 156165165,
"percentChange24h": 0.15,
"isStableCoin": false,
"contracts": [
{
"symbol": "ZCX",
"blockchain": "Ethereum",
"contract_address": "0xc52c326331e9ce41f04484d3b5e5648158028804",
"decimals": 18,
"chain_id": 1
}
]
}
Last updated
Was this helpful?