Get Token Details#
Retrieve Meme Pump scanner data for a specified token.
Request URL#
GET https://web3.okx.com/api/v6/dex/market/memepump/tokenDetails
Request Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainIndex | String | Yes | Chain unique identifier (e.g., 501 = Solana). Only single-chain queries are supported. |
| tokenContractAddress | String | Yes | Token contract address. |
Response Parameters#
Same fields as individual items in the Get Token List response, returned as a single object.
| Parameter | Type | Description |
|---|---|---|
| chainIndex | String | Chain ID (e.g., 501 = Solana). |
| protocolId | String | Protocol ID (e.g., 1 = PUMP_FUN). |
| quoteTokenAddress | String | Quote token contract address. |
| tokenContractAddress | String | Token contract address. |
| symbol | String | Token symbol. |
| name | String | Token name. |
| logoUrl | String | Token logo URL. |
| createdTimestamp | String | Token creation time (millisecond timestamp). |
| market | Object | Market data. |
| >marketCapUsd | String | Market cap (USD). |
| >volumeUsd1h | String | 1h trading volume (USD). |
| >txCount1h | String | 1h total transaction count. |
| >buyTxCount1h | String | 1h buy transaction count. |
| >sellTxCount1h | String | 1h sell transaction count. |
| bondingPercent | String | Bonding curve progress (%). |
| mayhemModeTimeRemaining | String | Pump.fun Mayhem Mode remaining time. Empty if not applicable. |
| tags | Object | Audit / tag data. |
| >top10HoldingsPercent | String | Top 10 holders' combined holdings (%). |
| >devHoldingsPercent | String | Developer holdings (%). |
| >insidersPercent | String | Insiders holdings (%). |
| >bundlersPercent | String | Bundlers holdings (%). |
| >snipersPercent | String | Snipers holdings (%). |
| >freshWalletsPercent | String | Fresh wallets holdings (%). |
| >suspectedPhishingWalletPercent | String | Suspected phishing wallets (%). |
| >totalHolders | String | Total number of holder addresses. |
| social | Object | Social media info. |
| >x | String | X (Twitter) link. |
| >telegram | String | Telegram link. |
| >website | String | Website link. |
| >websiteType | String | Website type identifier. |
| >dexScreenerPaid | Boolean | Whether DEX Screener ads are active. |
| >communityTakeover | Boolean | Community takeover (CTO) flag. |
| >liveOnPumpFun | Boolean | Live on Pump.fun flag. |
| bagsFeeClaimed | Boolean | Whether bags fee has been claimed. |
| aped | String | Number of co-invested (aped) wallets. |
| migratedBeginTimestamp | String | Migration start time (ISO 8601). |
| migratedEndTimestamp | String | Migration end time (ISO 8601). |
| creatorAddress | String | Token creator wallet address. |
Request Example#
Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/memepump/tokenDetails?chainIndex=501&tokenContractAddress=7Gf9...pump' \
--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",
"msg": "",
"data": {
"chainIndex": "501",
"protocolId": "1",
"quoteTokenAddress": "11111111111111111111111111111111",
"tokenContractAddress": "7Gf9...pump",
"symbol": "TETANUS",
"name": "tetanus",
"logoUrl": "https://static.okx.com/cdn/assets/imgs/xxx.png",
"createdTimestamp": "1730000000000",
"market": {
"marketCapUsd": "154880.12",
"volumeUsd1h": "50231.11",
"txCount1h": "225",
"buyTxCount1h": "128",
"sellTxCount1h": "97"
},
"bondingPercent": "63.5",
"mayhemModeTimeRemaining": "",
"tags": {
"top10HoldingsPercent": "0.12",
"devHoldingsPercent": "0.10",
"insidersPercent": "0.23",
"bundlersPercent": "0.48",
"snipersPercent": "0.35",
"freshWalletsPercent": "0.50",
"suspectedPhishingWalletPercent": "0.00",
"totalHolders": "2080"
},
"social": {
"x": "https://x.com/xxxx",
"telegram": "https://t.me/xxxx",
"website": "https://xxxx.com",
"websiteType": "1",
"dexScreenerPaid": false,
"communityTakeover": false,
"liveOnPumpFun": true
},
"bagsFeeClaimed": false,
"aped": "12",
"migratedBeginTimestamp": "",
"migratedEndTimestamp": "",
"creatorAddress": "3kXoZt...q1Re"
}
}