get https://api-bot-v1.dbotx.com/account/trades
This API is used to get all successfully executed transactions by the user
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
"configName": null,
"wallet": "wallet address", // Wallet address
"type": "buy", // Transaction type, including “buy” and “sell”
"source": "swap_order", // Source of the trade: “swap_order” means from fast buy / sell, “snipe_order” means from auto sniper, “limit_order” means from limit order, “follow_order” means from copy trading
"subSource": null, // Source of take profit and stop loss: “follow_take_profit” means take profit from copy trading, “follow_stop_loss” means stop loss from copy trading, “swap_take_profit” means take profit from fast buy / sell, and “swap_stop_loss” means stop loss from fast buy / sell
"chain": "solana", // Blockchain (solana/ethereum/base/bsc/tron)
"pair": "9Tb2ohu5P16BpBarqd3N27WnkF51Ukfs8Z1GzzLDxVZW", // Trading pair address
"totalUsd": 177.48, // Dollar value of this transaction
"priceUsd": 0.001152, // Token price (USD)
"taxRate": 0, // Token tax rate
"taxAmount": "0", // Taxes charged for this transaction
"dbotFeeRate": 0.005, // Trading fee rate (differentiated according to membership level)
"dbotFee": "5000000", // Trading fee charged for this transaction
"profit": 0, // Trading profit
"sendToken": { // 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
}
},
"receiveToken": { // Received token information
"amount": "261325827", // 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": ""
}
},
"token": { // Token information for this transaction
"balance": "261325827", // Token balance
"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"
}
}
]
}