get https://api-bot-v1.dbotx.com/account/swap_trades
This API is used to get the user's all fast buy & sell records
Free | Plus | Pro | Enterprise | Credit Usage |
---|---|---|---|---|
✅ | ✅ | ✅ | ✅ | 0 |
Response data
{
"err": false, // Error or not
"res": [
{
"id": "n1v50h7dfkt0e1", // Task id
"timestamp": 1729830265, // Time of successful transaction execution
"createAt": 1729830262521, // Transaction creation time
"state": "done", // Transaction state (init/processing/done/fail/expired)
"chain": "solana", // Blockchain (solana/ethereum/base/bsc/tron)
"configName": null, // The name of the copy trading that generated this transaction
"wallet": "wallet address", // Wallet address
"type": "buy", // Transaction type, including “buy” and “sell”
"pair": "9Tb2ohu5P16BpBarqd3N27WnkF51Ukfs8Z1GzzLDxVZW", // Trading pair address
"dbotFeeRate": 0.005, // Trading fee rate (differentiated according to membership level)
"dbotFee": "5000000", // Trading fee charged for this transaction
"errorCode": "", // Error code
"errorMessage": "", // Reason for error
"send": { // Sent token information
"amount": "1000000000", // Sent token amount
"info": { // Token information
"contract": "So11111111111111111111111111111111111111112", // Token address
"name": "Wrapped SOL",
"symbol": "SOL",
"decimals": 9, // Token decimals
"totalSupply": null, // Total token supply
"icon": "icon url", // Token icon URL
"createAt": null // Token creation time
}
},
"receive": { // Received token information
"amount": "4330480021456", // Received token amount
"info": {
"contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", // Token address
"createAt": 1728554501806, // Token creation time
"name": "token name",
"symbol": "token symbol",
"decimals": 6, // Token decimals
"totalSupply": "1000000000000000", // Total token supply
"icon": "icon url", // Token icon URL
"freezeAuthority": null, // Is the token freezeable
"mintAuthority": null, // Is the token mintable
"tokenProgram": ""
}
},
"tax": { // Token tax information
"rate": 0, // Token tax rate
"amount": "0", // Taxes charged for this transaction
"info": {
"contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", // Token address
"createAt": 1728554501806, // Token creation time
"name": "token name",
"symbol": "token symbol",
"decimals": 6, // Token decimals
"totalSupply": "1000000000000000", // Total token supply
"icon": "icon url", // Token icon URL
"freezeAuthority": null, // Is the token freezeable
"mintAuthority": null, // Is the token mintable
"tokenProgram": ""
}
},
"links": { // Related links for this transaction
"etherscan": "scan link",
"dexscreener": "dexscreener link",
"uniswap": "swap link"
}
}
]
}