API Reference
DBot OfficialDBot DashboardPricing

Historical Transactions

This API is used to get all historical transactions for a specific trading pair

FreePlusProEnterpriseCredit Usage
10

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "id": "6850c30a54da0479435b6bc8", // This transaction's ID
      "slot": 347286159, // Block number in which the trade occurred
      "blockTime": 1750123273, // Block time
      "txHash": "transaction hash", // Transaction hash
      "dex": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA", // Dex contract address where the transaction occurred
      "pair": "6GfF6Q2pJMhitms6cqhmHVMio7fd2TBXt4s3RjCnaHKf", // Trading pair address
      "account": "4NWUKn2tm6k8kPC9izrfE3Mryrvu4QyAawy1JGG8j481", // Wallet address that made the trade (maker)
      "tradeType": "removeLiq", // Transaction type, including “buy/ sell / addLiq / removeLiq”
      "token": "6qAa6x3YitxLyDmGrRcaNdxt63LFMzT9U8x9VaF4PUMP",  // Token address
      "solAmount": 463.76640154, // SOL amount in this transaction
      "quantity": 751561342.164468, // Token amount in this transaction
      "dexName": "pump swap program" // Dex name where the transaction occurred
    }
  ]
}
Language