Fast Buy & Sell Records (GET)

Fast Buy & Sell Records

This API is used to get the user's all fast buy & sell 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

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",
			"timestamp": 1729830265,
			"createAt": 1729830262521,
			"state": "done",
			"chain": "solana",
			"configName": null,
			"wallet": "wallet address",
			"type": "buy",
			"pair": "9Tb2ohu5P16BpBarqd3N27WnkF51Ukfs8Z1GzzLDxVZW",
			"dbotFeeRate": 0.005,
			"dbotFee": "5000000",
			"errorCode": "",
			"errorMessage": "",
			"send": {
				"amount": "1000000000",
				"info": {
					"contract": "So11111111111111111111111111111111111111112",
					"name": "Wrapped SOL",
					"symbol": "SOL",
					"decimals": 9,
					"totalSupply": null,
					"icon": "icon url",
					"createAt": null
				}
			},
			"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)

  • 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

  • send: Sent token information

  • receive: Received token information

  • tax: Token tax information

  • 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