Get Token Bundle Details#
Retrieve bundler-related data for a specified token.
Request URL#
GET https://web3.okx.com/api/v6/dex/market/memepump/tokenBundleInfo
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#
| Parameter | Type | Description |
|---|---|---|
| bundlerAthPercent | String | Bundlers' all-time-high combined holdings (%). |
| totalBundlers | String | Total number of bundler addresses. |
| bundledValueNative | String | Total bundled amount in native token. |
| bundledTokenAmount | String | Total bundled token amount. |
Request Example#
Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/memepump/tokenBundleInfo?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": {
"bundlerAthPercent": "0.92",
"totalBundlers": "9",
"bundledValueNative": "375",
"bundledTokenAmount": "4880000"
}
}