Skip to main content

9. Order list

Order list

This API is used to query a list of orders. By calling this API, you can obtain a list of orders, including order status, quantity, price, and other detailed information.

GET
/openapi/order/list
Request
NameTypeRequiredDescription
pagenumber noDefault: 1.
page_sizenumber noDefault: 10 ; Max: 100

Request

{
"page": 1,
"page_size": 10
}
Response
NameTypeDescription
codeintBusiness status code
totalinttotal
dataArrayorder data
abbrstringCoin name
accept_atintAcceptance time
addressstringWallet Address
chainstringChain name
create_atintCreation time
delete_atintDelete time
exchange_modelstringExchange mode [ float | fixed ]
expire_atintExpiration time
finish_atintCompletion time
freeze_atintFreeze time
nostringOrder number
odr_volumefloatOrder Quantity
payfor_atintPayment Time
pricefloatPrice
query_codestringQuery code
rel_volumefloatActual quantity
statusintStatus, 1:to be transferred; 2:already transferred; 3:exchange; 4:completed; 5:Refunded; 7:frozen; 8:expired; 9:abandoned
typestringSource Asset Agreement
msgstringBusiness message

Example Response

{
"code": 0,
"msg": "success",
"total": 1,
"data":[
{
"no": "1aS***UQ",
"query_code": "FL4E****TGEE",
"chain": "TRON",
"type": "",
"abbr": "TRX",
"address": "TWr1wuWH******XGgMmtVJNSi1p5",
"exchange_model": "float",
"odr_volume": 17660.605547,
"rel_volume": 6.15,
"addr_num": 1,
"price": 0.283116,
"status": 4,
"create_at": 1776859589,
"expire_at": 1777945989,
"payfor_at": 1767860156,
"accept_at": 0,
"finish_at": 1767861622,
"freeze_at": 0,
"delete_at": 0
}]
}