Get active orders
Get active crypto exchange orders for the requesting user. The user is resolved by the provided API key.
Request
Filter active orders by specific currency pairs (comma-separated).
Possible values: [pending_new, new, partially_filled]
Filter orders by one or more specific states.
Possible values: [buy, sell]
Filter by order direction (Buy or Sell).
Example: "ZGF0ZT0xNzY0OTMxNTAyODU0O2lkPTM3YjExMWJlLTcwMzYtNGYzNC1hYWYyLTM4ZDVjYTEyN2M1Yw=="
Pagination cursor obtained from the metadata.next_cursor property of the previous response.
Possible values: >= 1 and <= 100
Example: 100
Default value: 100
Maximum number of records to return.
Example: 1746007718237
Current timestamp in Unix epoch milliseconds. Used to prevent replay attacks and construct the signature. Provided with other authentication headers.
Example: "2h/t5o8w+l5s+fjyfA0n/e7j4u5b7h4e+g4k4c8h7a2p6k0g7j1f+w0i2j3k9r0l3s8m5t6r+q1s+o3v/t4x8v5y+w1r+m2t/k3w/j4y+"
The Ed25519 signature of the request. Provided with other authentication headers.
See Authentication headers: Signing a request for details on how to generate this.
Response
OK
The list of active orders.
ID of the order.
ID of the previous/replaced order. Present only if this order has replaced another one.
ID of the order assigned by the client when creating the order.
Symbol of the asset for which this order has been created.
Possible values: [buy, sell]
Side of the order. Indicates whether the order was to acquire (buy) or dispose of (sell) an asset.
Possible values: [market, limit]
Type of the order.
A market order is executed immediately at the current market price. A limit order is executed only if the asset reaches a specified price set by the trader.
Quantity of the order, expressed in base currency.
Quantity of the order that has been filled.
In other words, how much of the order has already been executed.
Quantity of the order that remains to be filled.
In other words, how much of the order remains to be executed.
The worst price for the client at which an order will be filled.
This is the worst price at which the user is willing to trade. For buy orders, it's the maximum price for the order; for sell orders, it's the minimum price.
Quantity-weighted average fill price of the order.
This is the average price at which the order has been executed so far. If the order is filled in parts at different prices, this indicates the overall average price for the order.
Possible values: [pending_new, new, partially_filled, filled, cancelled, rejected, replaced]
Status of the order:
pending_new: Accepted by a matching engine but not yet working.new: Working order.partially_filled: Partially filled order.filled: Fully filled order.cancelled: Cancelled order.rejected: Rejected order.replaced: Replaced order.
Reason for rejecting the order, present only for status=rejected.
Possible values: [gtc]
Time in force of the order. Indicates how long the order should remain active before it’s either executed or canceled. Possible values:
gtc: Good till cancelled. Means that the order stays active until it’s either completely filled or it's manually cancelled by the user who created the order.
Possible values: [allow_taker, post_only]
Example: ["post_only"]
Default value: allow_taker
List of execution instructions for the order.
Timestamp in Unix epoch milliseconds.
Timestamp in Unix epoch milliseconds.
Cursor used to retrieve the next page of results.
To continue paginating through the results, make a new request and pass this value in the cursor query parameter.