API Reference
DBot OfficialDBot DashboardPricing

Hot

This API is used to get hot pools / pairs from all supported DEXs

FreePlusProEnterpriseCredit Usage
10

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "id": "21YnaVkwNQN6yXESuw8iti7ADx6BeBvst7DsyX3WsLTZ", // Trading pair address
      "token": "6Cb4uayXmLBZb2VCkwghUd4CatWseG5Q5WWBwKboPUMP", // Token address
      "image": "image url",
      "name": "No Dump Agreement",
      "supply": 1000000000,
      "symbol": "NDA",
      "buyAndSellTimes1h": 27445, // Buy and sell times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
      "buyAndSellVolume1h": 21170238.15, // Buy and sell volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
      "buyTimes1h": 13506, // Buy times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
      "buyVolume1h": 10608034.10, // Buy volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
      "priceChange1h": 5.88, // Price change of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (e.g., 0.1 means 10%)
      "priceChange1m": 0.13, // Price change of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (e.g., 0.1 means 10%)
      "priceChange24h": 5.88, // Price change of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (e.g., 0.1 means 10%)
      "priceChange5m": -0.04, // Price change of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (e.g., 0.1 means 10%)
      "priceChange6h": 5.88, // Price change of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (e.g., 0.1 means 10%)
      "sellTimes1h": 13939, // Sell times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
      "sellVolume1h": 10562204.05, // Sell volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
      "tokenPrice": 6.705268798513395e-7, // Token price, determined based on "baseMint", with unit in SOL / WBNB / USDC / USD1
      "marketCap": 99794.52, // Market cap of the current token
      "marketCapChange5m": -4260.30, // 5-minute change in market cap of the current token
      "marketCapChangeRate5m": -0.05, // 5-minute percentage change in market cap of the current token
      "tokenReserve": 608911173.14, // Token amount in the current liquidity pool
      "currencyReserve": 408.29, // Base currency amount in the pool, determined based on "baseMint", value in SOL / WBNB / USDC / USD1
      "solReserve": 384.36,
      "baseMint": "So11111111111111111111111111111111111111112", // Contract address of the base token in the current liquidity pool
      "baseSymbol": "SOL", // Current SOL amount in the liquidity pool
      "devAccount": "FJzVq4iLDoF4GWT3jRmaRZ1aMSo2JKo5YQrnamkmwctR", // Developer wallet address of the current token
      "holders": 183, // Number of holders of the current token
      "poolType": "pump_swap", // Type of the current liquidity pool, including: raydium_amm, raydium_clmm, pump, pancake_v2, pancake_v3, etc.
      "links": [ // Trading pair related links
        {
          "label": "website",
          "url": "https://x.com/i/communities/1935172597966352809"
        },
        {
          "label": "twitter",
          "url": "https://x.com/i/communities/1935172597966352809"
        }
      ],
      "isLaunchMigration": false, // "true" indicates the current liquidity pool was created by platforms
      "snipersCount": 6, // Number of sniper wallets of the current pair
      "safetyInfo": {
        "canFrozen": false, // "true" means the token is freezeable
        "freezeAuthority": true,
        "canMint": false, // "true" means the token is mintable
        "mintAuthority": true,
        "top10HolderRate": 0.20, // Top 10 holding ratio
        "burnedOrLockedLpPercent": null // Pool burnt ratio
      },
      "createdAt": 1750216526542,
      "tokenCreatedAt": 1750216530440,
      "pairPriceCreatedAt": 1750216530440,
      "pairPriceUpdatedAt": 1750220010851,
      "isCollect": false, // Whether the current pair is favorited
      "buyAndSellTimes": 27445, // Buy and sell times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
      "buyAndSellVolume": 21170238.15 // Buy and sell volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours
    }
  ]
}
Language