Skip to main content
GET
/
data
/
orders
List live orders for the authenticated account
curl --request GET \
  --url https://clob.kuest.com/data/orders
{
  "data": [
    {
      "associateTrades": [
        "<string>"
      ],
      "id": "<string>",
      "status": "<string>",
      "market": "<string>",
      "originalSize": "<string>",
      "outcome": "<string>",
      "makerAddress": "<string>",
      "side": "BUY",
      "sizeMatched": "<string>",
      "assetId": "<string>",
      "expiration": "<string>",
      "type": "FOK",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "owner": "<string>",
      "price": "<string>"
    }
  ],
  "next_cursor": "<string>",
  "limit": 123,
  "count": 123
}
Retrieve the active (live) orders owned by the authenticated L2 credentials.
Send the L2 headers: KUEST_ADDRESS, KUEST_SIGNATURE, KUEST_TIMESTAMP, KUEST_API_KEY, and KUEST_PASSPHRASE. The response only includes orders linked to that credential set.

Query parameters

ParameterTypeRequiredDescription
idstringNoOrder ULID to fetch (case-insensitive).
marketstringNoConditionID to filter on.
asset_idstringNoToken/asset ID to filter on.
next_cursorstringNoBase64-encoded offset for pagination (MA== to start, LTE= when exhausted).
Omit parameters you do not need; empty strings are ignored. If the combination is invalid the endpoint returns 400 invalid_filter.

Response

The endpoint returns a paginated object with:
  • data: array of open orders (same structure as GET /data/order/{id}, with status fixed to live).
  • next_cursor: Base64-encoded offset for the next page (LTE= when no more pages).
  • limit: page size used for the query.
  • count: number of items in data.

Query Parameters

id
string

Filter by order identifier.

market
string

Filter by market/condition identifier.

asset_id
string

Filter by asset (token) identifier.

next_cursor
string

Base64-encoded offset for pagination. Use MA== to start; LTE= means no more pages.

Response

Open orders owned by the authenticated account.

data
object[]
required
next_cursor
string
required
limit
integer
required

Page size used for the query.

count
integer
required

Number of items returned in this page.