Strategy API

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#

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

Response Parameters#

ParameterTypeDescription
similarTokenArrayList of similar tokens.
>tokenContractAddressStringToken contract address.
>tokenSymbolStringToken symbol.
>tokenLogoStringToken logo URL.
>marketCapUsdStringMarket cap (USD).
>lastTxTimestampStringLast transaction time (ISO 8601).
>createdTimestampStringToken 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"
      }
    ]
  }
}