cURL
对账
批量交易校验
批量交易校验,支持按 request_id / transaction_id / hash 或字段组合批量匹配校验。
POST
cURL
授权
API Key,请求需在请求头中携带。
时间戳,请求需在请求头中携带。
签名串,请求需在请求头中携带。
请求体
application/json
- request_id、transaction_id、hash 默认至少使用一个参数,其中交易类型为 Deposit 时,request_id 不适用
- 剩余参数需至少提供一个进行校验
- amount_delta:数量容差,默认:0.001
- time:交易时间可选,单位:秒
- time_type:时间匹配类型:=Created,按交易的创建时间;=Confirmed,按交易的确认时间;=Completed,按交易的完成时间,默认:Created
- time_delta:时间容差,单位:秒,默认:10
需要校验的交易列表
示例:
[
{
"request_id": "",
"transaction_id": "da55a74c-e666-428d-8227-38cd25e3414d",
"hash": "",
"chain_id": "TRON",
"token_id": "TRON_USDT",
"to": "TWgTvxMj9AFZhQF5xKjrua(XCAhym4E1qu",
"type": "Deposit",
"amount": 2000,
"fee": 20,
"amount_actual": 1980,
"status": "Completed",
"amount_delta": 0.01,
"time": 1761518815,
"time_type": "Created",
"time_delta": 10
},
{
"request_id": "",
"transaction_id": "164271c4-3004-4201-a2b7-21156379293c",
"hash": "",
"chain_id": "ETH",
"token_id": "ETH_USDT",
"to": "0xfdd30a21582210900bc1468b2dbc7d51b68502973",
"type": "Deposit",
"amount": 1000,
"fee": 10,
"amount_actual": 990,
"status": "Completed",
"amount_delta": 0.01,
"time": 1761649929,
"time_type": "Created",
"time_delta": 10
}
]