Strategy API

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#

ParameterTypeRequiredDescription
chainIndexStringYesChain unique identifier (e.g., 501 = Solana). Only single-chain queries are supported.
tokenContractAddressStringYesToken contract address.

Response Parameters#

ParameterTypeDescription
bundlerAthPercentStringBundlers' all-time-high combined holdings (%).
totalBundlersStringTotal number of bundler addresses.
bundledValueNativeStringTotal bundled amount in native token.
bundledTokenAmountStringTotal 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"
  }
}