API Reference
DBot OfficialDBot DashboardPricing

Copy Records

This API is used to get the user's all copy records

FreePlusProEnterpriseCredit Usage
0

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "id": "n1v50h7dfkt0e1_n26jlde17ktfr7", // Task id
      "timestamp": 1729830265, // Time of successful transaction execution
      "createAt": 1729830262521, // Transaction creation time
      "state": "done", // Transaction state (init/processing/done/fail/expired)
      "chain": "solana", // Blockchain (solana/ethereum/base/bsc/tron)
      "configId": "n1v50h7dfkt0e1", // The id of the copy trading that generated this transaction
      "configName": "task name", // The name of the copy trading that generated this transaction
      "wallet": "wallet address", // Wallet address
      "type": "buy", // Transaction type, including “buy” and “sell”
      "pair": "9Tb2ohu5P16BpBarqd3N27WnkF51Ukfs8Z1GzzLDxVZW", // Trading pair address
      "dbotFeeRate": 0.005, // Trading fee rate (differentiated according to membership level)
      "dbotFee": "5000000", // Trading fee charged for this transaction
      "errorCode": "", // Error code
      "errorMessage": "", // Reason for error
      "skipReason": "", // This parameter is returned when a transaction is skipped due to the configured filter conditions
      "follow": { // The information of the followed trade
        "wallet": "copy wallet address", // The wallet address you copied
        "send": { // Sent token information
          "amount": "1000000000", // Sent token amount
          "info": { // Token information
            "contract": "So11111111111111111111111111111111111111112", // Token address
            "name": "Wrapped SOL",
            "symbol": "SOL",
            "decimals": 9, // Token decimals
            "totalSupply": null, // Total token supply
            "icon": "icon url" // Token icon URL
          }
        },
        "receive": { // Received token information
          "amount": "4330480021456", // Received token amount
          "info": {
            "contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", // Token address
            "createAt": 1728554501806, // Token creation time
            "name": "token name",
            "symbol": "token symbol",
            "decimals": 6, // Token decimals
            "totalSupply": "1000000000000000", // Total token supply
            "icon": "icon url", // Token icon URL
            "freezeAuthority": null, // Is the token freezeable
            "mintAuthority": null, // Is the token mintable
            "tokenProgram": ""
          }
        }
      },
      "send": { // Sent token information
        "amount": "1000000000", // Sent token amount
        "info": { // Token information
          "contract": "So11111111111111111111111111111111111111112", // Token address
          "name": "Wrapped SOL",
          "symbol": "SOL",
          "decimals": 9, // Token decimals
          "totalSupply": null, // Total token supply
          "icon": "icon url" // Token icon URL
        }
      },
      "receive": { // Received token information
        "amount": "4330480021456", // Received token amount
        "info": {
          "contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", // Token address
          "createAt": 1728554501806, // Token creation time
          "name": "token name",
          "symbol": "token symbol",
          "decimals": 6, // Token decimals
          "totalSupply": "1000000000000000", // Total token supply
          "icon": "icon url", // Token icon URL
          "freezeAuthority": null, // Is the token freezeable
          "mintAuthority": null, // Is the token mintable
          "tokenProgram": ""
        }
      },
      "tax": { // Token tax information
        "rate": 0, // Token tax rate
        "amount": "0", // Taxes charged for this transaction
        "info": {
          "contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", // Token address
          "createAt": 1728554501806, // Token creation time
          "name": "token name",
          "symbol": "token symbol",
          "decimals": 6, // Token decimals
          "totalSupply": "1000000000000000", // Total token supply
          "icon": "icon url", // Token icon URL
          "freezeAuthority": null, // Is the token freezeable
          "mintAuthority": null, // Is the token mintable
          "tokenProgram": ""
        }
      },
      "links": { // Related links for this transaction
        "etherscan": "scan link",
        "dexscreener": "dexscreener link",
        "uniswap": "swap link"
      }
    }
  ]
}
Language