Get Orders
All Orders
GET
https://api.liquid.com/orders?funding_currency={funding_currency}&product_id={product_id}
Get all orders with optional parameters as filters.
Query Parameters
Name | Type | Description |
---|---|---|
status | string | Filter by |
side | string | Only for status |
funding_currency | string | Filter by funding currency e.g. |
product_id | string | Filter by a pair's ID e.g. |
trading_type | string | Filter by |
with_details | string | Set to |
limit | string | Set to |
page | string | Use together with the limit filter, |
Single Order
GET
https://api.liquid.com/orders/{order_id} OR /orders/client:{client_order_id}
Get order status by providing order ID or client order ID.
Path Parameters
Name | Type | Description |
---|---|---|
client_order_id | string | Client Order ID. /orders/client:{client_order_id} |
order_id | string | System generated order ID. |
Get a single order by providing the client order ID.
An Order's Trade
GET
https://api.liquid.com/orders/{order_id}/trades
An order consist of one or multiple trades, get trades that are tied to an orders.
Path Parameters
Name | Type | Description |
---|---|---|
order_id | string | Example order ID |
Last updated