Endpoint

GET /v1/account/order/query

Request Parameters

ParameterTypeRequiredDescription
idStringYesOrder ID returned by the platform.
timestampLongYesUNIX timestamp (in milliseconds).

Response Parameters

ParameterTypeRequiredDescription
idStringYesUnique identifier for the order.
amountStringYesAmount deposited by the user.
tokenNameStringYesToken name of the deposit.
chainNameStringYesNetwork used for the deposit.
fromAddressStringYesSender’s address.
toAddressStringYesRecipient’s address.
statusStringYesCurrent status of the order.
txHashStringYesOn-chain transaction hash.
createdTimeLongYesCreation time of the order (UTC).

Response Example

{
    "code": 200,
    "msg": "success",
    "timestamp": "1725674596300",
    "data": {
        "id": "587096537146986496",
        "chainName": "Tron",
        "tokenName": "USDT",
        "toAddress": "TKjLDbk7LC9NXzRBCYahKa8pzMHRfahJjn",
        "amount": "200.15",
        "status": "Success",
        "txHash": "56a925bb3a90badb770f227e34a61737327e0eded81190e048c23ab6efa8ec9b",
        "createdTime": 1729475874520
    }
}