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#
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainIndex | String | Yes | Unique identifier for the blockchain network. e.g., 501 = Solana, 56 = BSC. Only single-chain queries are supported. |
| tokenContractAddress | String | Yes | The contract address of the token to query aped wallet list for. |
| walletAddress | String | No | User's wallet address. When provided, the response will highlight whether the user's wallet is among the aped wallets. |
Response Parameters#
| Parameter | Type | Description |
|---|---|---|
| apedWalletList | Array | List of co-invested wallets. |
| >walletAddress | String | Wallet address. |
| >walletType | String | Wallet type. Enum: SMART_MONEY, INFLUENCER, NORMAL. |
| >holdingUsd | String | Current holdings value (USD). |
| >holdingPercent | String | Current holdings as a percentage of total supply (%). |
| >totalPnl | String | Total profit and loss (USD). |
| >pnlPercent | String | PnL 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"
}
]
}
}