Token API

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#

ParameterTypeRequiredDescription
chainIndexStringYesUnique identifier of the chain. For example: 1: Ethereum.
tokenContractAddressStringYesToken contract address (e.g. 0x382bb369d343125bfb2117af9c149795c6c65c50)

Response Parameters#

FieldTypeDescription
totalFeeStringTotal fees include priority fees and tip fees
lpBurnedPercentStringLiquidity pool burned percentage
isInternalBooleanWhether it is an internal token
protocolIdStringProtocol ID
progressStringInternal token launch progress
tokenTagsArrayToken tags: can be empty, or return one or more of the following
>honeypotStringHoneypot
>dexBoostStringBoost activity
>lowLiquidityStringLow liquidity
>communityRecognizedStringCommunity recognized
>devHoldingStatusSellStringDevelopers sold
>devHoldingStatusSellAllStringDevelopers sold all
>devHoldingStatusBuyStringDevelopers buy more
>initialHighLiquidityStringHigh initial liquidity
>smartMoneyBuyStringSmart money buy
>devAddLiquidityStringDevelopers add liquidity
>devBurnTokenStringDevelopers burn tokens
>volumeChangeRateHoldersPlungeStringTrading volume plummeted
>holdersChangeRateHoldersSurgeStringThe number of holding addresses has increased sharply
>dexScreenerTokenCommunityTakeOverStringCommunity takeover
>dexScreenerPaidStringPaid on DEX Screener
createTimeStringToken creation time
creatorAddressStringCreator address
devRugPullTokenCountStringThe number of Rug Pull tokens created by the developer
devCreateTokenCountStringTotal number of tokens created by developers
devLaunchedTokenCountStringDeveloper created tokens in the number of migrated
riskControlLevelStringRisk control level: 0=undefined, 1=low, 2=medium, 3=medium high, 4=high, 5=high (manual configuration)
top10HoldPercentStringPosition percent of Top 10 Holders
devHoldingPercentStringDeveloper position percent
bundleHoldingPercentStringBundle position percent
suspiciousHoldingPercentStringSuspicious address position percent
sniperHoldingPercentStringSniper position percent
snipersClearAddressCountStringNumber of Sniper Clearance Addresses
snipersTotalStringTotal 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": ""
}