Skip to main content
GET
/
openorders
Get open orders
curl --request GET \
  --url https://futures.kraken.com/derivatives/api/v3/openorders \
  --header 'APIKey: <api-key>' \
  --header 'Authent: <api-key>'
{
  "result": "success",
  "openOrders": [
    {
      "order_id": "59302619-41d2-4f0b-941f-7e7914760ad3",
      "symbol": "PF_XBTUSD",
      "side": "sell",
      "orderType": "lmt",
      "limitPrice": 10640,
      "unfilledSize": 304,
      "receivedTime": "2019-09-05T17:01:17.410Z",
      "status": "untouched",
      "filledSize": 0,
      "reduceOnly": true,
      "lastUpdateTime": "2019-09-05T17:01:17.410Z"
    },
    {
      "order_id": "022774bc-2c4a-4f26-9317-436c8d85746d",
      "symbol": "PF_XBTUSD",
      "side": "buy",
      "orderType": "lmt",
      "limitPrice": 7200,
      "unfilledSize": 1501,
      "receivedTime": "2019-09-05T16:41:35.173Z",
      "status": "untouched",
      "filledSize": 0,
      "reduceOnly": false,
      "lastUpdateTime": "2019-09-05T16:47:47.519Z"
    },
    {
      "order_id": "d08021f7-58cb-4f2c-9c86-da4c60de46bb",
      "symbol": "PF_XBTUSD",
      "side": "sell",
      "orderType": "lmt",
      "limitPrice": 10640,
      "unfilledSize": 10000,
      "receivedTime": "2019-09-05T16:38:43.651Z",
      "status": "untouched",
      "filledSize": 0,
      "reduceOnly": true,
      "lastUpdateTime": "2019-09-05T16:38:43.651Z"
    },
    {
      "order_id": "179f9af8-e45e-469d-b3e9-2fd4675cb7d0",
      "symbol": "PF_XBTUSD",
      "side": "buy",
      "orderType": "lmt",
      "limitPrice": 9400,
      "unfilledSize": 10000,
      "receivedTime": "2019-09-05T16:33:50.734Z",
      "status": "untouched",
      "filledSize": 0,
      "reduceOnly": false,
      "lastUpdateTime": "2019-09-05T16:33:50.734Z"
    },
    {
      "order_id": "9c2cbcc8-14f6-42fe-a020-6e395babafd1",
      "symbol": "PF_XBTUSD",
      "side": "buy",
      "orderType": "lmt",
      "limitPrice": 9400,
      "unfilledSize": 1000,
      "receivedTime": "2019-09-04T11:45:48.884Z",
      "status": "untouched",
      "filledSize": 0,
      "reduceOnly": false,
      "lastUpdateTime": "2019-09-05T16:41:40.996Z"
    },
    {
      "order_id": "3deea5c8-0274-4d33-988c-9e5a3895ccf8",
      "symbol": "PF_XBTUSD",
      "side": "buy",
      "orderType": "lmt",
      "limitPrice": 8500,
      "unfilledSize": 102,
      "receivedTime": "2019-09-03T12:52:17.945Z",
      "status": "untouched",
      "filledSize": 0,
      "reduceOnly": false,
      "lastUpdateTime": "2019-09-03T12:52:17.945Z"
    },
    {
      "order_id": "fcbb1459-6ed2-4b3c-a58c-67c4df7412cf",
      "symbol": "PF_XBTUSD",
      "side": "buy",
      "orderType": "lmt",
      "limitPrice": 7200,
      "unfilledSize": 1501,
      "receivedTime": "2019-09-02T12:54:34.347Z",
      "status": "untouched",
      "filledSize": 0,
      "reduceOnly": false,
      "lastUpdateTime": "2019-09-02T12:54:34.347Z"
    }
  ],
  "serverTime": "2019-09-05T17:08:18.138Z"
}

Documentation Index

Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

APIKey
string
header
required

General API key with at least read-only access

Authent
string
header
required

Authentication string

Response

200 - application/json
openOrders
object[]
required

A list containing structures with information on open orders. The list is sorted descending by receivedTime.

result
enum<string>
required
Available options:
success
Example:

"success"

serverTime
string<date-time>
required

Server time in Coordinated Universal Time (UTC)

Example:

"2020-08-27T17:03:33.196Z"