获取代币列表#
获取筛选条件下的代币列表,上限 30 条。
请求 URL#
GET https://web3.okx.com/api/v6/dex/market/memepump/tokenList
请求参数#
| 参数名 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| chainIndex | String | 是 | 链唯一标识(如 501 = Solana),仅支持单链查询。 |
| protocolId | String | 否 | Protocol ID 筛选,不传则返回所有支持的 Protocol。 |
| sort | String | 否 | 排序字段。可选:marketCapUsd、volumeUsd1h、txCount1h、createdTimestamp。默认:createdTimestamp。 |
| order | String | 否 | 排序方向。可选:asc、desc。默认:desc。 |
| minAge | Integer | 否 | 最小代币年龄(分钟)。 |
| maxAge | Integer | 否 | 最大代币年龄(分钟)。 |
| minMarketCapUsd | String | 否 | 最小市值(USD)。 |
| maxMarketCapUsd | String | 否 | 最大市值(USD)。 |
| minVolumeUsd1h | String | 否 | 最小 1h 成交额(USD)。 |
| stage | String | 否 | 代币阶段筛选。可选:new、migrating_soon、migrated。 |
| limit | Integer | 否 | 返回条数,最大 30,默认 30。 |
| cursor | String | 否 | 分页游标,从上一次响应中获取。 |
返回参数#
| 参数名 | 类型 | 描述 |
|---|---|---|
| cursor | String | 下一页分页游标,无更多数据时为空。 |
| items | Array | 代币列表。 |
| >chainIndex | String | 链 ID(如 501 = Solana)。 |
| >protocolId | String | 协议来源编号(如 1 = PUMP_FUN)。 |
| >quoteTokenAddress | String | 计价代币合约地址。 |
| >tokenContractAddress | String | Token 合约地址。 |
| >symbol | String | Token 符号。 |
| >name | String | Token 名称。 |
| >logoUrl | String | Token 图标 URL。 |
| >createdTimestamp | String | Token 创建时间(毫秒时间戳)。 |
| >market | Object | 市场数据。 |
| >>marketCapUsd | String | 市值(USD)。 |
| >>volumeUsd1h | String | 1 小时成交额(USD)。 |
| >>txCount1h | String | 1 小时总交易数。 |
| >>buyTxCount1h | String | 1 小时买入交易数。 |
| >>sellTxCount1h | String | 1 小时卖出交易数。 |
| >bondingPercent | String | 进度数据(%)。 |
| >mayhemModeTimeRemaining | String | Pump.fun 的 Mayhem Mode 剩余时间,非此模式代币则返回空。 |
| >tags | Object | 标签 / 审计类数据。 |
| >>top10HoldingsPercent | String | Top10 持仓占比(%)。 |
| >>devHoldingsPercent | String | Dev 持仓占比(%)。 |
| >>insidersPercent | String | Insiders 占比(%)。 |
| >>bundlersPercent | String | Bundlers 占比(%)。 |
| >>snipersPercent | String | Snipers 占比(%)。 |
| >>freshWalletsPercent | String | Fresh wallets 占比(%)。 |
| >>suspectedPhishingWalletPercent | String | 疑似钓鱼钱包(%)。 |
| >>totalHolders | String | 持币地址数量。 |
| >social | Object | 社交媒体信息。 |
| >>x | String | X(Twitter)链接。 |
| >>telegram | String | Telegram 链接。 |
| >>website | String | 网站链接。 |
| >>websiteType | String | 官网类型。 |
| >>dexScreenerPaid | Boolean | DEX Screener paid。 |
| >>communityTakeover | Boolean | CTO(社区接管)。 |
| >>liveOnPumpFun | Boolean | Live on Pump.fun。 |
| >bagsFeeClaimed | Boolean | 是否 claim bag fee。 |
| >aped | String | 同车钱包数量。 |
| >migratedBeginTimestamp | String | 迁移开始时间(ISO 8601)。 |
| >migratedEndTimestamp | String | 迁移结束时间(ISO 8601)。 |
| >creatorAddress | String | 代币创建者钱包地址。 |
请求示例#
Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/memepump/tokenList?chainIndex=501&protocolId=1&sort=createdTimestamp&order=desc&limit=30' \
--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'
返回示例#
Json
{
"code": "0",
"msg": "",
"data": {
"cursor": "eyJsYXN0SWQiOiI3R2Y5Li4ucHVtcCJ9",
"items": [
{
"chainIndex": "501",
"protocolId": "1",
"quoteTokenAddress": "1111...1111",
"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": "2025-06-01T08:00:00Z",
"migratedEndTimestamp": "2025-06-01T08:20:00Z",
"creatorAddress": "3kXoZt...q1Re"
},
{
"chainIndex": "56",
"protocolId": "3",
"quoteTokenAddress": "0x55d398326f99059fF775485246999027B3197955",
"tokenContractAddress": "0x12ab...cdef",
"symbol": "SUNNY",
"name": "Sunny Meme",
"logoUrl": "https://static.okx.com/cdn/assets/imgs/yyy.png",
"createdTimestamp": "1730000300000",
"market": {
"marketCapUsd": "92100.50",
"volumeUsd1h": "118900.00",
"txCount1h": "512",
"buyTxCount1h": "410",
"sellTxCount1h": "102"
},
"bondingPercent": "20.50",
"mayhemModeTimeRemaining": "",
"tags": {
"top10HoldingsPercent": "22.10",
"devHoldingsPercent": "4.50",
"suspectedPhishingWalletPercent": "0.00",
"totalHolders": "420"
},
"social": {
"x": "",
"telegram": "https://t.me/sunny_meme",
"website": "",
"websiteType": "",
"dexScreenerPaid": false,
"communityTakeover": false,
"liveOnPumpFun": false
},
"bagsFeeClaimed": false,
"aped": "12",
"migratedBeginTimestamp": "2025-06-01T08:00:00Z",
"migratedEndTimestamp": "2025-06-01T08:20:00Z",
"creatorAddress": "0xXoZt...q1Re"
}
]
}
}