API Reference
DBot OfficialDBot DashboardPricing

Wallet Live Trades Alert (WS)

After subscribing to a wallet’s real-time transactions, you’ll receive this notification whenever that wallet makes a trade.

FreePlusProEnterpriseCredit 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": "walletTx", // 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, "migratedPairInfo" for latest migrated trading pairs, "walletTx" for wallet live trades
  "result": [
   {
    "i": "1750745716459209741", // Transaction ID
    "m":"7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr", // Token address
    "p":"FRhB8L7Y9Qq41qZXYLtC2nw8An1RJfLLxRF2x9RwLLMo", // Pair address
    "bm":"So11111111111111111111111111111111111111112", // baseMint
    "bs":"SOL", // baseSymbol
    "t": 1750745715, // Transaction timestamp
    "tx": "transaction hash", // Transaction hash
    "d": "pump swap program", // DEX where the transaction occurred
    "ac": "FTNziq8YPoHfYWbtHiXxscFZ3e3j6aWSmV2wDZjunt2y", // Wallet address (maker) that executed the trade
    "tt": "buy", // Transaction type: "buy" / "sell" / "addLiq" / "removeLiq"
    "s": 1.919984302, // Amount of SOL in this trade
    "u": 278.80092049342, // USD value of this trade
    "q": 107817.195813 // Token amount in this trade
   }
  ]
}