Get Similar Tokens#
Retrieve tokens similar to the specified token.
Request URL#
GET https://web3.okx.com/api/v6/dex/market/memepump/similarToken
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 |
|---|---|---|
| similarToken | Array | List of similar tokens. |
| >tokenContractAddress | String | Token contract address. |
| >tokenSymbol | String | Token symbol. |
| >tokenLogo | String | Token logo URL. |
| >marketCapUsd | String | Market cap (USD). |
| >lastTxTimestamp | String | Last transaction time (ISO 8601). |
| >createdTimestamp | String | Token creation time (ISO 8601). |
Request Example#
Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/memepump/similarToken?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": {
"similarToken": [
{
"tokenContractAddress": "8Hd92...xYp1",
"tokenSymbol": "TETAX",
"tokenLogo": "https://static.okx.com/cdn/assets/imgs/tetax.png",
"marketCapUsd": "245800.32",
"lastTxTimestamp": "2025-03-08T12:45:21Z",
"createdTimestamp": "2025-03-01T08:00:00Z"
},
{
"tokenContractAddress": "9Ks81...LpQ9",
"tokenSymbol": "TETAN",
"tokenLogo": "https://static.okx.com/cdn/assets/imgs/tetan.png",
"marketCapUsd": "158920.00",
"lastTxTimestamp": "2025-03-08T12:40:10Z",
"createdTimestamp": "2025-02-28T15:12:00Z"
}
]
}
}