Create Auto Sniper (POST)
Create Auto Sniper
This API is used to create multi-chain token sniper tasks
URL
https://api-bot-v1.dbotx.com/automation/snipe_order
Header: X-API-KEY
(Please do not disclose your API Key to anyone. If you are at risk of losing it, please refresh it.)
Notes
X-API-KEY can be obtained in your "Dashboard", go to check: Dashboard
In the paging type interface, use the next field in the return value as the query parameter for the next page (if next == null, it means that paging has ended)
Request Example
{
"enabled": true,
"chain": "solana",
"token": "8EPRkSsLRQ3vLZUyKHohMHQ7F7FN8fmVBeViNwznEHgJ",
"walletId": "lus8auwp003zvg",
"expireDelta": 360000000,
"buySettings": {
"buyAmountUI": "0.1",
"customFeeAndTip": false,
"priorityFee": "0.00005",
"gasFeeDelta": 5,
"maxFeePerGas": 100,
"jitoEnabled": true,
"jitoTip": 0.001,
"maxSlippage": 0.1,
"minLiquidity": 0,
"concurrentNodes": 2,
"retries": 1
},
"sellSettings": {
"enabled": true,
"stopEarnEnabled": true,
"stopEarnMode": "profit_percent",
"stopEarnPercentOrPrice": 1,
"stopLossEnabled": true,
"stopLossMode": "loss_percent",
"stopLossPercentOrPrice": 0.5,
"autoSell": false,
"useMidPrice": false,
"customFeeAndTip": false,
"priorityFee": "0.00005",
"gasFeeDelta": 5,
"maxFeePerGas": 100,
"jitoEnabled": true,
"jitoTip": 0.001,
"maxSlippage": 0.1,
"concurrentNodes": 2,
"retries": 1
}
}
Request Response
{
"err": false,
"res": {
"id": "lus8bfug0040i2"
},
"docs": "https://dbotx.com/docs"
}
Response Parameters
Last updated