Strategy API

Get Token Aped Wallet Details#

Retrieve co-invested ("aped") wallet data for a specified token,with a maximum limit of 50 entries.

Request URL#

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

Request Parameters#

ParameterTypeRequiredDescription
chainIndexStringYesUnique identifier for the blockchain network. e.g., 501 = Solana, 56 = BSC. Only single-chain queries are supported.
tokenContractAddressStringYesThe contract address of the token to query aped wallet list for.
walletAddressStringNoUser's wallet address. When provided, the response will highlight whether the user's wallet is among the aped wallets.

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"
      }
    ]
  }
}