API Reference
DBot OfficialDBot DashboardPricing

Token Collection

This API is used to fast collect tokens from multiple addresses

FreePlusProEnterpriseCredit Usage
0

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "err": false, // whether there is an error for this item
      "msg": "OK", // response message
      "walletAddress": "Fnpyvw6cmc8VzKcyLnYENa78uCEsnAUJ5V7aRQXLodw4", // wallet address that sent the transaction
      "txid": "transaction hash", // Transaction hash
      "amountUnit": "99999999500000", // Token amount
      "decimals": 6 // Token decimal
    },
    {
      "err": false,
      "msg": "OK",
      "walletAddress": "5yRfpu87ackjzYjDJWfxsMG9yC6zoYJPSKNF43SyyfJS",
      "txid": "transaction hash", // Transaction hash
      "amountUnit": "99999999500000", // Token amount
      "decimals": 6 // Token decimal
    }
  ]
}
Language