Copy Records (GET)

Copy Records

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

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.)

Parameters

{page} 0 / 1 / 2 ...
{size} 10 / 20 (max 20)
{chain} solana / ethereum / base / bsc / tron
{type} buy / sell
{myWallet} wallet address
{targetWallet} wallet address
{configId} task id

Notes

  1. X-API-KEY can be obtained in your "Dashboard", go to check: Dashboard

  2. 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)

Results

{
	"err": false,
	"res": [
		{
			"id": "n1v50h7dfkt0e1_n26jlde17ktfr7",
			"timestamp": 1729830265,
			"createAt": 1729830262521,
			"state": "done",
			"chain": "solana",
			"configId": "n1v50h7dfkt0e1",
			"configName": "task name",
			"wallet": "wallet address",
			"type": "buy",
			"pair": "9Tb2ohu5P16BpBarqd3N27WnkF51Ukfs8Z1GzzLDxVZW",
			"dbotFeeRate": 0.005,
			"dbotFee": "5000000",
			"errorCode": "",
			"errorMessage": "",
			"skipReason": "",
			"follow": {
				"wallet": "copy wallet address",
				"send": {
					"amount": "1000000000",
					"info": {
						"contract": "So11111111111111111111111111111111111111112",
						"name": "Wrapped SOL",
						"symbol": "SOL",
						"decimals": 9,
						"totalSupply": null,
						"icon": "icon url"
					}
				},
				"receive": {
					"amount": "4330480021456",
					"info": {
						"contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
						"createAt": 1728554501806,
						"name": "token name",
						"symbol": "token symbol",
						"decimals": 6,
						"totalSupply": "1000000000000000",
						"icon": "icon url",
						"freezeAuthority": null,
						"mintAuthority": null,
						"tokenProgram": ""
					}
				}
			},
			"send": {
				"amount": "1000000000",
				"info": {
					"contract": "So11111111111111111111111111111111111111112",
					"name": "Wrapped SOL",
					"symbol": "SOL",
					"decimals": 9,
					"totalSupply": null,
					"icon": "icon url"
				}
			},
			"receive": {
				"amount": "4330480021456",
				"info": {
					"contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
					"createAt": 1728554501806,
					"name": "token name",
					"symbol": "token symbol",
					"decimals": 6,
					"totalSupply": "1000000000000000",
					"icon": "icon url",
					"freezeAuthority": null,
					"mintAuthority": null,
					"tokenProgram": ""
				}
			},
			"tax": {
				"rate": 0,
				"amount": "0",
				"info": {
					"contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
					"createAt": 1728554501806,
					"name": "token name",
					"symbol": "token symbol",
					"decimals": 6,
					"totalSupply": "1000000000000000",
					"icon": "icon url",
					"freezeAuthority": null,
					"mintAuthority": null,
					"tokenProgram": ""
				}
			},
			"links": {
				"etherscan": "scan link",
				"dexscreener": "dexscreener link",
				"uniswap": "swap link"
			}
		}
	],
	"docs": "https://dbotx.com/docs"
}

Response Parameters

  • id: Task id

  • timestamp: Time of successful transaction execution

  • createAt: Transaction creation time

  • state: Transaction state (init/processing/done/fail/expired)

  • chain: Blockchain (solana/ethereum/base/bsc/tron)

  • configId: The id of the copy trading that generated this transaction

  • configName: The name of the copy trading that generated this transaction

  • wallet: Wallet address

  • type: Transaction type, including “buy” and “sell”

  • pair: Trading pair address

  • dbotFeeRate: Trading fee rate (differentiated according to membership level)

  • dbotFee: 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: apiParamRecordsFollow

  • send: Sent token information

  • receive: Received token information

  • tax: Token tax information

  • wallet (follow): The wallet address you copied

  • amount: Sent / received token amount

  • rate (tax): Token tax rate

  • amount (tax): Taxes charged for this transaction

  • info: Token information

  • contract: Token address

  • createAt: Token creation time

  • decimals: Token decimals

  • totalSupply: Total token supply

  • icon: Token icon URL

  • freezeAuthority: Is the token freezeable

  • mintAuthority: Is the token mintable

  • link: Related links for this transaction

Last updated