Open Orders
Request via this endpoint to get currently open orders. Orders with status OPEN or PARTIALLY can return as a response. It is recommended to use pagination with up to 100 items per request, using the limit and offset options for this. The endpoint supports returning up to the last 1000 open orders.
GET /v1/order/open
Headers
Param | Type |
---|---|
apikey | string |
Query Parameters
Param | Type | Example | Description |
---|---|---|---|
symbol | string | "KLV-USDT" | A valid trading symbol code. |
limit | integer | 100 | Number of results per request. Minimum is 1 , maximum is 100 , default is 100 . |
offset | integer | 0 | The number of elements to skip |
Response
Param | Type | Example | Description |
---|---|---|---|
- | []Order | - | - |
Response Example
{
"success": true,
"data": [
{
"orderId": "bcd3ec7a-806b-4194-88d2-dd11cd581b7e",
"status": "OPEN",
"symbol": "KLV-USDT",
"side": "SELL",
"price": "0.007647",
"averagePrice": "",
"quantity": "100",
"filled": "0",
"typeOrder": "LIMIT",
"typeTrade": "MAKER",
"fee": "0",
"feeToken": "USDT",
"feePayWithKLV": "0",
"createdAt": 1708460381,
"updatedAt": 1708460381
},
{
"orderId": "338a6c5e-e4f6-47c4-a9a2-edec230787d5",
"status": "PARTIALLY",
"symbol": "KLV-USDT",
"side": "BUY",
"price": "0.06874",
"averagePrice": "0.06874",
"quantity": "100",
"filled": "40",
"typeOrder": "LIMIT",
"typeTrade": "MAKER",
"fee": "0.00006874",
"feeToken": "KLV",
"feePayWithKLV": "0.000006874",
"createdAt": 1708460362,
"updatedAt": 1708460362
}
]
}