Request Parameters

📘

Request Closed(done, cancel) Orders

NameDescriptionType
marketMarket IDString
stateOrder State

done : all completed orders
cancel : cancelled orders

- Market orders not retrieved: market buy orders can result in order statuses of "cancel" or "done" after execution.
- Remaining order quantity after a market order is executed will be returned and the order will be canceled. In most cases, a minimal amount that does not divide evenly up to 8 decimal places will become the order quantity.
- If the order is executed exactly without any remaining quantity, the order state will be "done."
String
stateOrder State List, default: ['done', 'cancel']

* done, cancel are included in default
Array[String]
start_timeRequest start time (based on order creation time)

- The start_time and end_time should be in ISO-8601 format with Time Zone included (e.g., 2024-03-13T00:00:00+09:00).
- If both start_time and end_time are not defined, orders within the past hour from the current time will be retrieved.
- If only start_time is defined, orders from start_time up to one hour later will be retrieved.
- If only end_time is defined, orders within the past hour from end_time will be retrieved.
- If both start_time and end_time are defined, orders within a maximum range of one hour will be retrieved.
- *Even if orders are within the specified time frame, they will not be retrieved if they exceed the limit count, try in smaller batches.
String
end_timeRequest end time (based on order creation time)String
limitItem per page, default: 100, max: 1000

- Max. 1,000. If the number of orders within the specified time range exceeds 1,000, divide the time range.
Number
order_bySorting method

- asc
- desc (default)
String

*By default, if no parameters are specified, the response will include the most recent 100 closed orders.


Response

NameDescriptionType
uuidOrder unique uuidString
sideOrder typeString
ord_typeOrder Method

- limit: Limit Order
- price: Market Order(Bid)
- market: Market Order(Ask)
- best: Best Order
String
priceCurrency Price at the Time of OrderNumberString
stateOrder StatusString
marketMarket IDString
created_atOrder Generation TimeDateString
volumeUser Input Order VolumeNumberString
remaining_volumeRemaining Order Volume after TradeNumberString
reserved_feeRatio Reserved as FeesNumberString
remaining_feeRemaining FeesNumberString
paid_feeUsed FeesNumberString
lockedRatio being used in TransactionsNumberString
executed_volumeTraded VolumeNumberString
executed_fundsExecuted VolumeNumberString
trades_countThe number of Transactions in the orderInteger
time_in_forceioc, fok order settings

- ioc : Immediate or Cancel
- fok : Fill or Kill
String

*Null value Fields are excluded from the response. (e.g., in the case of an order without IOC or FOK settings, the time_in_force field will not be included in the response.)

Language