API Reference
DBot OfficialDBot DashboardPricing

Opening Sell Tasks

This API is used to get the user's all opening sell tasks

FreePlusProEnterpriseCredit Usage
0

Response Data

{
  "err": false, // Error or not
  "res": [
    {
      "accountId": "vd1l2ge6ac1dxh", // User id
      "id": "n1v50h7hfkt0e1", // Opening sell task id
      "enabled": true, // Task enable status, true/false
      "state": "init", // Order state (init/processing/done/fail/expired)
      "chain": "solana", // Currently fixed to "solana"
      "tradeType": "sell", // Currently fixed to "sell"
      "amountOrPercent": 1, // Sell ratio (0-1), 0.5 means sell 50%
      "pair": "pair address", // Pump token address
      "pairType": "pump", // Currently fixed to "sell"
      "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
      "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
      "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
      "expireAt": 1731324301348, // Task expiration time (millisecond timestamp)
      "expireDelta": 36000000, // Task duration, max 432000000 (milliseconds)
      "concurrentNodes": 2, // Number of concurrent nodes (1-3)
      "retries": 1, // Number of retries after failure (0-10)
      "errorCode": "", // Error type
      "errorMessage": "", // Error message
      "currencyInfo": {
        "contract": "So11111111111111111111111111111111111111112",
        "name": "Wrapped SOL",
        "symbol": "SOL",
        "decimals": 9,
        "totalSupply": null,
        "icon": "icon url",
        "createAt": null
      }, // Native token information
      "tokenInfo": {
        "contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
        "createAt": 1728554501806,
        "name": "token name",
        "symbol": "token symbol",
        "decimals": 6,
        "totalSupply": "1000000000000000",
        "icon": "icon url",
        "freezeAuthority": null,
        "mintAuthority": null
      }, // Token information
      "links": { // Related links for this transaction
        "etherscan": "scan link",
        "dexscreener": "dexscreener link",
        "uniswap": "swap link"
      }
    }
  ]
}
Language