Create Limit Order (POST)
Create Limit Order
URL
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
{
"chain": "solana",
"pair": "BAS6Cv5qG2FnEQ8W1wXKGfU2r6MFAiSdgGgkUM7NsStE",
"walletId": "lus8auwp003zvg",
"groupId": "m53gevri055ird",
"settings": [
{
"enabled": true,
"tradeType": "buy",
"triggerPriceUsd": "0.022348210260",
"triggerDirection": "down",
"currencyAmountUI": "0.1",
"customFeeAndTip": false,
"priorityFee": "",
"gasFeeDelta": 5,
"maxFeePerGas": 100,
"jitoEnabled": true,
"jitoTip": 0.001,
"expireDelta": 360000000,
"expireExecute": false,
"useMidPrice": false,
"maxSlippage": 0.1,
"concurrentNodes": 2,
"retries": 1
},
{
"enabled": true,
"tradeType": "sell",
"triggerPriceUsd": "1.5",
"triggerDirection": "up",
"customFeeAndTip": false,
"priorityFee": "0.00005",
"currencyAmountUI": 1,
"gasFeeDelta": 5,
"maxFeePerGas": 100,
"jitoEnabled": true,
"jitoTip": 0.001,
"expireDelta": 360000000,
"expireExecute": false,
"useMidPrice": false,
"maxSlippage": 0.1,
"concurrentNodes": 2,
"retries": 1
}
]
}
Request Response
{
"err": false,
"res": {
"ids": [
"lus8bfug0040i2",
"lus8bfug004166"
]
},
"docs": "https://dbotx.com/docs"
}
Request Parameters
Last updated