API Reference
DBot OfficialDBot DashboardPricing

Dev Sell Tasks

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

FreePlusProEnterpriseCredit Usage
0

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "accountId": "vd1l2ge6ac1dxh", // User id
      "id": "n1v50h7hfkt0e1", // Dev 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"
      "minDevSellPercent": 0.5, // Trigger ratio (0-1), sell tokens when Dev sells over this ratio
      "amountOrPercent": 1, // Sell ratio (0-1), e.g. 0.5 means sell 50%
      "pair": "pair address", // If pairType is “pump”, it's the address of pump tokens; if “raydium_amm”, it's Pump official pair address
      "pairType": "pump", // Only Pump tokens supported; "pump" means tokens not on Raydium, "raydium_amm" means tokens on Raydium
      "walletId": "lus8auwp003zvg", // Wallet id to be used, obtained from Wallet Info API
      "walletType": "solana", // Wallet type (solana/evm)
      "walletAddress": "your wallet address", // Wallet address
      "walletName": "your wallet name", // Wallet name
      "customFeeAndTip": false, // If true, both priorityFee and jitoTip fields are valid and used; false means system auto-allocates them based on mode
      "priorityFee": null, // Priority fee (SOL), null means auto priority fee
      "jitoEnabled": true, // 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)
      "expireAt": 1731324301348, // Task expiration time (milliseconds timestamp)
      "expireDelta": 36000000, // Task duration in ms, max 432000000
      "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", // Native token contract address
        "name": "Wrapped SOL",
        "symbol": "SOL",
        "decimals": 9,
        "totalSupply": null,
        "icon": "icon url",
        "createAt": null
      },
      "tokenInfo": {
        "contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", // Token contract address
        "createAt": 1728554501806, // Token creation time
        "name": "token name",
        "symbol": "token symbol",
        "decimals": 6,
        "totalSupply": "1000000000000000",
        "icon": "icon url",
        "freezeAuthority": null,
        "mintAuthority": null
      },
      "links": {
        "etherscan": "scan link",
        "dexscreener": "dexscreener link",
        "uniswap": "swap link"
      }
    }
  ]
}
Language