Strategy API

Get Token Aped Wallet Details#

Retrieve co-invested ("aped") wallet data for a specified token.

Request URL#

GET https://web3.okx.com/api/v6/dex/market/memepump/apedWallet

Request Parameters#

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

Response Parameters#

ParameterTypeDescription
apedWalletListArrayList of co-invested wallets.
>walletAddressStringWallet address.
>walletTypeStringWallet type. Enum: SMART_MONEY, INFLUENCER, NORMAL.
>holdingUsdStringCurrent holdings value (USD).
>holdingPercentStringCurrent holdings as a percentage of total supply (%).
>totalPnlStringTotal profit and loss (USD).
>pnlPercentStringPnL as a percentage (%).

Request Example#

Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/memepump/apedWallet?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": {
    "apedWalletList": [
      {
        "walletAddress": "9xK3ab...Tg91",
        "walletType": "SMART_MONEY",
        "holdingUsd": "12450.32",
        "holdingPercent": "1.28",
        "totalPnl": "5320.11",
        "pnlPercent": "74.32"
      },
      {
        "walletAddress": "3Lm92Q...Hs77",
        "walletType": "INFLUENCER",
        "holdingUsd": "8420.50",
        "holdingPercent": "0.86",
        "totalPnl": "2100.00",
        "pnlPercent": "33.18"
      }
    ]
  }
}