get https://api-bot-v1.dbotx.com/automation/snipe_orders
This API is used to get the user's all auto sniper tasks
Free | Plus | Pro | Enterprise | Credit Usage |
---|---|---|---|---|
✅ | ✅ | ✅ | ✅ | 0 |
Response Data
{
"err": false, // Error or not
"res": [
{
"accountId": "vd1l2ge6ac1dxh", // User id
"id": "n1v50h7hfkt0e1", // Auto Sniper task id
"enabled": true, // Task enable status, true/false
"chain": "solana", // Blockchain (solana/ethereum/base/bsc/tron)
"expireAt": 1731324301348, // Task expiration time (millisecond timestamp)
"expireDelta": 36000000, // Task duration, max 432000000 (milliseconds)
"walletId": "lus8auwp003zvg", // The id of the wallet to be used, which can be obtained via the "Wallet Info API"
"walletType": "solana", // Wallet type (solana/evm)
"walletAddress": "your wallet address", // Wallet address
"walletName": "your wallet name", // Wallet name
"buyState": "done", // Status of the buy task (init/processing/done/fail/expired)
"buyErrorCode": "", // Error code of the buy task
"buyErrorMessage": "", // Error reason of the buy task
"sellState": "done", // Status of the sell task (init/processing/done/fail/expired)
"sellErrorCode": "", // Error code of the sell task
"sellErrorMessage": "", // Error reason of the sell task
"buySettings": {
"buyAmountUI": 0.1, // Buy amount (ETH/SOL/BNB/TRX)
"customFeeAndTip": false, // "true" means both the priority fee (priorityFee) and the bribery tip (jitoTip) fields are valid, and the system will execute the transaction based on the provided values (null indicates automatic priority fee / bribery tip). "false" means that in turbo mode, only the priority fee (priorityFee) is valid, while in anti-MEV, only the bribery tip (jitoTip) is valid, and the system will allocate them automatically
"priorityFee": "0.005", // Priority Fee (SOL), valid for Solana, empty string means use auto priority fee
"gasFeeDelta": 5, // Extra added gas (Gwei), valid for EVM
"maxFeePerGas": 100, // When the base gas exceeds this value, no transaction will execute (Gwei), valid for EVM chains
"jitoEnabled": true, // "true" means enable anti-MEV mode (Solana & Ethereum & Bsc)
"jitoTip": 0.001, // Bribery tip used by Anti-MEV (Solana)
"maxSlippage": 0.1, // MAX slippage tolerance (0.00-1.00), when buying, it represents the difference between the actual price and the expected price. When selling, it represents the difference between the expected price and the actual price, the difference multiplier = 1/(1-slippage), 0.5 means a maximum of 2 times the accepted spread, 1 means unlimited spreads
"minLiquidity": 0, // Liquidity needs to be greater than this value to trigger sniping (USD)
"concurrentNodes": 2, // Number of concurrent nodes (1-3)
"retries": 1 // Number of retries after failure (0-10)
},
"sellSettings": {
"enabled": true, // Sell task enabled status
"tradeType": "sell", // Trade type, with values of buy and sell
"stopEarnEnabled": true, // Whether to enable take profit
"stopEarnMode": "profit_percent", // How to stop profit, currently supports "profit_percent", which means stop profit by percentage
"stopEarnPercentOrPrice": 0.5, // Take Profit ratio, 0.5 means sell when 50% up
"stopLossEnabled": true, // Whether to enable stop loss
"stopLossMode": "loss_percent", // How to stop loss, currently support " profit_percent", means stop loss by percentage
"stopLossPercentOrPrice": 0.5, // Stop Loss ratio (0.00-1.00), 0.5 means sell when 50% down
"autoSell": false, // Whether to auto sell at the end of the task without triggering the take profit or stop loss
"useMidPrice": false, // "true" enables Anti-Spike mode using the 1-second mid-price as trigger price (not 100% guaranteed)
"customFeeAndTip": false, // "true" means both the priority fee (priorityFee) and the bribery tip (jitoTip) fields are valid, and the system will execute the transaction based on the provided values (null indicates automatic priority fee / bribery tip). "false" means that in turbo mode, only the priority fee (priorityFee) is valid, while in anti-MEV, only the bribery tip (jitoTip) is valid, and the system will allocate them automatically
"priorityFee": null, // Priority Fee (SOL), valid for Solana, empty string means use auto priority fee
"gasFeeDelta": 5, // Extra added gas (Gwei), valid for EVM
"maxFeePerGas": 100, // When the base gas exceeds this value, no transaction will execute (Gwei), valid for EVM chains
"jitoEnabled": true, // "true" means enable anti-MEV mode (Solana & Ethereum & Bsc)
"jitoTip": 0.001, // Bribery tip used by Anti-MEV (Solana)
"maxSlippage": 0.1, // MAX slippage tolerance (0.00-1.00), when buying, it represents the difference between the actual price and the expected price. When selling, it represents the difference between the expected price and the actual price, the difference multiplier = 1/(1-slippage), 0.5 means a maximum of 2 times the accepted spread, 1 means unlimited spreads
"concurrentNodes": 2, // Number of concurrent nodes (1-3)
"retries": 1 // Number of retries after failure (0-10)
},
"tokenInfo": {
"contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
"createAt": 1728554501806,
"name": "token name",
"symbol": "token symbol",
"decimals": 6,
"totalSupply": "1000000000000000",
"icon": "icon url",
"freezeAuthority": null,
"mintAuthority": null
}
}
]
}