Endpoint

GET /v1/account/order/query

Request Parameters

ParameterTypeRequiredDescription
idStringNoOrder ID returned by the platform.
businessIdStringNoMerchant-defined business ID. Either id or businessId must be provided.
timestampLongYesUNIX timestamp (in milliseconds).

Response Parameters

ParameterTypeRequiredDescription
idStringYesOrder ID.
tokenNameStringYesName of the token.
chainNameStringYesBlockchain network name, e.g., Ethereum, Bsc.
toAddressStringYesRecipient’s address.
amountStringYesWithdrawal amount.
statusStringYesOrder status. Refer to “Enum Definitions” for details.
businessIdStringNoMerchant-defined business ID.
tagStringNoNotes or remarks for the order.
txHashStringNoBlockchain transaction hash.
blockHighStringNoBlock height of the transaction.
networkFeeStringYesNetwork fee charged for the transaction.
platformFeeStringYesPlatform commission fee.
createdTimeLongYesOrder creation time (UTC).
completeTimeLongNoOrder completion time (UTC).

Response Example

{
    "code": 200,
    "msg": "success",
    "timestamp": "1725674596300",
    "data": {
        "id": "587096537146986496",
        "chainName": "Tron",
        "tokenName": "USDT",
        "toAddress": "TKjLDbk7LC9NXzRBCYahKa8pzMHRfahJjn",
        "amount": "200.15",
        "status": "Success",
        "businessId": "",
        "tag": "",
        "txId": "56a925bb3a90badb770f227e34a61737327e0eded81190e048c23ab6efa8ec9b",
        "blockHigh": 50025541,
        "networkFee": "2",
        "platformFee": "0.15",
        "createdTime": 1729475874520,
        "completeTime": 1729475874520
    }
}