Get token details
Get token metadata by symbol.
GET: /market/token/basicinfo
Content-Type: application/json
Parameters
Parameter | Type | mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
chain | string | true | Chain Name | ||
address | string | true | Token Contract Address |
Response
Example:
{
"code": 0,
"data": {
"chain": "string", // Chain Name
"chainCoinSymbol": "string", // On-Chain Coin Symbol
"chainImage": "string", // Chain Image URL
"contractAddress": "string", // Token Contract Address
"createTs": 0, // Token Creation Time
"displayDecimal": 0, // Display Decimal Places
"fullyMarketCap": "string", // Fully Diluted Market Cap
"image": "string", // Token Image URL
"latestPrice": "string", // Latest Price
"latestPriceInUsd": "string", // Latest Price (USD)
"latestPriceInUsdF": 0, // Latest Price (USD, Floating - point Format)
"liquidityLocked": true, // Whether Token Liquidity is Locked
"marketCap": "string", // Market Capitalization
"notFreeze": true, // Whether Token Can Be Frozen
"notMint": true, // Whether Token Can Be Minted
"numberOfHolder": 0, // Number of Holders
"poolCap": "string", // Pool Capacity
"priceChange": 0, // Price Change
"symbol": "string", // Price Change
"top10Positions": "string", // Proportion of Total Coins Held by Top 10 Holders
"tradingQuantity": "string", // Trading Quantity
"tradingVolume": "string" // Trading Volume
},
"msg": "string",
"time": 0
}