❗️

Deprecated (June, 2024 ~)

GET v1/orders will be deprecated. The specific removal date will be announced through an announcement, so please use v1/orders/uuids, v1/orders/open, or v1/orders/closed based on your needs.

Request Parameters

Field NameDescriptionType
marketMarket IDString
uuidsOrder UUID listArray
identifiersOrder Identifier ListArray
stateThe state of order

- wait: waiting for orders to be completed (default)

- watch: wait for stop-limit orders

- done: completed all orders

- cancel: Cancel orders

- Market order is not inquired on the order list lookup API: A market buy order can occur in both cases when the order status is cancel or done after being executed.

- If an order balance occurs after the execution at market price, the remaining balance will be returned and processed as cancel. In most cases, an insignificant amount that is not divisible to 8 decimal places will accrue as the order backlog.

- If there is no order remaining and all orders are completed, the order status will turn into done.
String
pageNumber of Pages, default: 1Number
order_bySorting Method

- asc : Ascending
- desc : Descending (default)
String

Response

📘

New order type & options

We support the best order type as well as the ioc (Immediate or Cancel) and fok (Fill or Kill) functions.

  • The best order type is added to the ord_type field.
  • The time_in_force field is added. (Type: ioc and fok)
Field NameDescriptionType
uuidUnique Order IDString
sideOrder TypeString
ord_typeOrder MethodString
priceCurrency Price at the Time of OrderNumberString
stateOrder StatusString
marketMarket Unique KeyString
created_atOrder Generation TimeDateString
volumeUser Input Order VolumeNumberString
remaining_volumeThe amount remaining after the orderNumberString
reserved_feeReserved FeesNumberString
remaining_feeRemaining FeesNumberString
paid_feeUsed FeesNumberString
lockedRatio being used in TransactionsNumberString
executed_volumeThe amount of the orders madeNumberString
trades_countThe number of Transactions in the orderInteger
time_in_forceioc, fok settingsString
Language