After subscribing to a specified pair’s updates, you will receive alerts when its price / volume, or other data change
Free | Plus | Pro | Enterprise | Credit Usage |
---|---|---|---|---|
✅ | ✅ | ✅ | ✅ | 1 |
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": "pairInfo", // Subscription type: "tx" for real-time transactions, "pairsInfo" for multi-pair data updates, "newPairInfo" for newly created pools / pairs, "pairInfo" for single pair data update
"result": {
"bt1m": 358, // Buy times in 1 minute
"bt5m": 1788, // Buy times in 5 minutes
"bt1h": 21191, // Buy times in 1 hour
"bt6h": 30387, // Buy times in 6 hours
"bt24h": 30387, // Buy times in 24 hours
"bv1m": 198918, // Buy volume in 1 minute
"bv5m": 986988, // Buy volume in 5 minutes
"bv1h": 11581109, // Buy volume in 1 hour
"bv6h": 16198100, // Buy volume in 6 hours
"bv24h": 16198100, // Buy volume in 24 hours
"pc1m": 0.1283, // Price change in 1 minute (0.1 = 10%)
"pc5m": 0.2330, // Price change in 5 minutes
"pc1h": 0.9369, // Price change in 1 hour
"pc6h": 23.834, // Price change in 6 hours
"pc24h": 23.834, // Price change in 24 hours
"st1m": 358, // Sell times in 1 minute
"st5m": 1788, // Sell times in 5 minutes
"st1h": 21190, // Sell times in 1 hour
"st6h": 30370, // Sell times in 6 hours
"st24h": 30370, // Sell times in 24 hours
"sv1m": 193220, // Sell volume in 1 minute
"sv5m": 976396, // Sell volume in 5 minutes
"sv1h": 115426, // Sell volume in 1 hour
"sv6h": 161226, // Sell volume in 6 hours
"sv24h": 16122, // Sell volume in 24 hours
"tp": 0.0000016, // Token price, determined based on "baseMint", with unit in SOL / WBNB / USDC / USD1
"tr": 35015, // Token amount in the current liquidity pool
"sr": 570, // SOL amount in the current liquidity pool
"cr": 570, // Base currency amount in the pool, determined based on "baseMint", value in SOL / WBNB / USDC / USD1
"t10": 0.1884, // Top 10 holding ratio
"blp": null, // Pool burnt ratio
"fa": true, // Is the token freezeable
"ma": true // Is the token mintable
}
}