API Reference
DBot OfficialDBot DashboardPricing

Multi-Pair Updates Alert (WS)

After subscribing to updates for multiple pairs, you will receive notifications when the price, holders, or other data of these pools / pairs change

FreePlusProEnterpriseCredit Usage
5

Notes

DBot has deployed WS CDN acceleration networks in multiple countries and regions worldwide. However, developers still need to monitor the WebSocket connection status, implement their own reconnection logic, and ensure that a heartbeat subscription is sent at least once every minute (recommended every 30–55 seconds). Otherwise, the DBot message subscription system will automatically disconnect the connection due to timeout in order to free up WS resources.

Response Data

{
  "type": "pairsInfo", // Subscription type: "pairsInfo" for multi-pair data updates
  "result": [
    {
      "p": "3sXAYMonqHgQZTTKGbV2A5L1YbsCHqgHjsFpiyyUNSLQ", // Pair address
      "bt1m": 360, // Buy times in 1 minute
      "bt5m": 1798, // Buy times in 5 minutes
      "bt1h": 19254, // Buy times in 1 hour
      "bt6h": 19254, // Buy times in 6 hours
      "bt24h": 19254, // Buy times in 24 hours
      "bv1m": 182361, // Buy volume in 1 minute
      "bv5m": 949228, // Buy volume in 5 minutes
      "bv1h": 10151376, // Buy volume in 1 hour
      "bv6h": 10151376, // Buy volume in 6 hours
      "bv24h": 10151376, // Buy volume in 24 hours
      "pc1m": -0.08540, // Price change in 1 minute
      "pc5m": -0.01593, // Price change in 5 minutes
      "pc1h": 49.65878, // Price change in 1 hour
      "pc6h": 49.65878, // Price change in 6 hours
      "pc24h": 49.6587, // Price change in 24 hours
      "st1m": 360, // Sell times in 1 minute
      "st5m": 1798, // Sell times in 5 minutes
      "st1h": 19238, // Sell times in 1 hour
      "st6h": 19238, // Sell times in 6 hours
      "st24h": 19238, // Sell times in 24 hours
      "sv1m": 186809, // Sell volume in 1 minute
      "sv5m": 948447, // Sell volume in 5 minutes
      "sv1h": 100580, // Sell volume in 1 hour
      "sv6h": 100580, // Sell volume in 6 hours
      "sv24h": 100580, // Sell volume in 24 hours
      "t10": 0.18543, // Top 10 holding ratio
      "blp": null, // Pool burnt ratio
      "bst": 38492, // Buy and sell times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (depends on the subscribed interval)
      "bsv": 20209 // Buy and sell volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (depends on the subscribed interval)
    }
  ]
}