API Reference
DBot OfficialDBot DashboardPricing

Token / Pair Search

This API is used to search for corresponding tokens or pairs based on name or address

FreePlusProEnterpriseCredit Usage
10

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "id": "9Y4RhAuSgxojh3cAAk8QZDfb3bpfSBwwZnDoMe1Thymj",  // Trading pair address
      "chain": "solana",  // Chain (solana/ethereum/base/bsc/tron)
      "dataType": "pair",  // Data type, "pair" indicates this data is a trading pair
      "dex": "pump_swap",  // Type of the current liquidity pool, including: raydium_amm, raydium_clmm, pump, pancake_v2, pancake_v3, etc.
      "baseMint": "So11111111111111111111111111111111111111112",  // Contract address of the base token in the current liquidity pool
      "baseSymbol": "SOL",  // Symbol of the base token in the current liquidity pool
      "buyAndSellVolume1h": 14002, // 1-hour trading volume of the current liquidity pool
      "buyAndSellVolume24h": 330022.3328232807, // 24-hour trading volume of the current liquidity pool
      "priceChange1h": 0.009302325581395432, // 1-hour price change of the current liquidity pool
      "priceChange24h": 0.1232325581395432, // 24-hour price change of the current liquidity pool
      "createdAt": 175081,  // Trading pair creation time
      "currencyReserve": 87,  // Base currency amount in the pool, determined based on "baseMint", value in SOL/WBNB/USDC/USD1
      "currencyReserveUSD": 14259,  // USD value of the base currency in the current liquidity pool
      "tokenReserve": 816180861.225291,  // Token amount in the current liquidity pool
      "image": "image url",  // Trading pair image URL
      "isLaunchMigration": false,  // "true" indicates the current liquidity pool wa created by platforms
      "lastTradeTime": 1750820978548,  // Last trade time
      "mint": "7kicwWuVuzxhFgYP8s6yH4Gp5i4tdr7pB1UdY5fUxXhz",  // Token address
      "supply": 100000000,  // Token supply
      "tokenPrice": 0.00001  // Token price, determined based on "baseMint", with unit in SOL/WBNB/USDC/USD1
    }
  ]
}
Language