快速买卖记录(GET)
Last updated
Last updated
此API用于获取用户所有的快速买卖记录
{page} 0 / 1 / 2 ...
{size} 10 / 20 (max 20)
{chain} solana / ethereum / base / bsc / tron
X-API-KEY可以在您的"控制台"中获取, 前往查看:
在分页类型的接口中, 通过返回值中的next字段, 作为下一页的查询参数(如果next == null, 意味着分页已经结束)
{
"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"
}
id:任务id
timestamp:交易执行成功的时间
createAt:交易创建时间
state:交易状态,init:初始化,processing:进行中,done:已完成,fail:已失败,expired:已过期
chain:链 (solana/ethereum/base/bsc/tron)
wallet:钱包地址
type:交易类型,包括"buy"和"sell"
pair:交易对合约地址
dbotFeeRate:手续费率(根据会员等级进行区分)
dbotFee:本次交易收取的手续费
errorCode:错误码
errorMessage:错误原因
send:发送的代币的信息
receive:接收的代币的信息
tax:代币税率信息
amount:发送 / 接收的代币数量
rate (tax):代币税率
amount (tax):本次交易收取的税
info:代币信息
contract:代币地址
createAt:代币创建时间
decimals:代币精度
totalSupply:代币总供应量
icon:代币icon URL
freezeAuthority:代币是否可冻结
mintAuthority:代币是否可mint
link:本次交易的相关链接