Token Advanced Information#
Obtain advanced information about the specified token contract address
Request Path#
GET https://web3.okx.com/api/v6/dex/market/token/advanced-info
Request Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainIndex | String | Yes | Unique identifier of the chain. For example: 1: Ethereum. |
| tokenContractAddress | String | Yes | Token contract address (e.g. 0x382bb369d343125bfb2117af9c149795c6c65c50) |
Response Parameters#
| Field | Type | Description |
|---|---|---|
| totalFee | String | Total fees include priority fees and tip fees |
| lpBurnedPercent | String | Liquidity pool burned percentage |
| isInternal | Boolean | Whether it is an internal token |
| protocolId | String | Protocol ID |
| progress | String | Internal token launch progress |
| tokenTags | Array | Token tags: can be empty, or return one or more of the following |
| >honeypot | String | Honeypot |
| >dexBoost | String | Boost activity |
| >lowLiquidity | String | Low liquidity |
| >communityRecognized | String | Community recognized |
| >devHoldingStatusSell | String | Developers sold |
| >devHoldingStatusSellAll | String | Developers sold all |
| >devHoldingStatusBuy | String | Developers buy more |
| >initialHighLiquidity | String | High initial liquidity |
| >smartMoneyBuy | String | Smart money buy |
| >devAddLiquidity | String | Developers add liquidity |
| >devBurnToken | String | Developers burn tokens |
| >volumeChangeRateHoldersPlunge | String | Trading volume plummeted |
| >holdersChangeRateHoldersSurge | String | The number of holding addresses has increased sharply |
| >dexScreenerTokenCommunityTakeOver | String | Community takeover |
| >dexScreenerPaid | String | Paid on DEX Screener |
| createTime | String | Token creation time |
| creatorAddress | String | Creator address |
| devRugPullTokenCount | String | The number of Rug Pull tokens created by the developer |
| devCreateTokenCount | String | Total number of tokens created by developers |
| devLaunchedTokenCount | String | Developer created tokens in the number of migrated |
| riskControlLevel | String | Risk control level: 0=undefined, 1=low, 2=medium, 3=medium high, 4=high, 5=high (manual configuration) |
| top10HoldPercent | String | Position percent of Top 10 Holders |
| devHoldingPercent | String | Developer position percent |
| bundleHoldingPercent | String | Bundle position percent |
| suspiciousHoldingPercent | String | Suspicious address position percent |
| sniperHoldingPercent | String | Sniper position percent |
| snipersClearAddressCount | String | Number of Sniper Clearance Addresses |
| snipersTotal | String | Total number of snipers |
Request Example#
Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/token/advanced-info?chainIndex=501&tokenContractAddress=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'
Response Example#
Json
{
"code": "0",
"data": {
"bundleHoldingPercent": "",
"chainIndex": "501",
"createTime": "1729231507000",
"creatorAddress": "HyYNVYmnFmi87NsQqWzLJhUTPBKQUfgfhdbBa554nMFF",
"devCreateTokenCount": "480",
"devHoldingPercent": "",
"devLaunchedTokenCount": "",
"devRugPullTokenCount": "26",
"isInternal": false,
"lpBurnedPercent": "74.3609957824270349103361582217",
"progress": "",
"protocolId": "120596",
"riskControlLevel": "1",
"sniperHoldingPercent": "",
"snipersClearAddressCount": "",
"snipersTotal": "",
"suspiciousHoldingPercent": "",
"tokenContractAddress": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump",
"tokenTags": [
"dexBoost",
"communityRecognized",
"devHoldingStatusSellAll",
"smartMoneyBuy"
],
"top10HoldPercent": "13.6832",
"totalFee": "2180.105145301"
},
"msg": ""
}