> ## Documentation Index
> Fetch the complete documentation index at: https://docs.simmer.markets/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Open Orders

> Get open (on-book) orders for the authenticated user.

Returns GTC/GTD orders placed through Simmer that Simmer believes are still on
the CLOB (status='submitted' in our DB). May include stale entries if an order
was filled or cancelled on the CLOB but not yet synced back. Does not include
orders placed directly on Polymarket outside of Simmer.

Requires API key in Authorization header (rate limited: 60/minute).

<Note>External wallet users who also place orders directly on the Polymarket CLOB (outside Simmer) should query the CLOB directly for a complete picture of open orders.</Note>


## OpenAPI

````yaml /openapi.json get /api/sdk/orders/open
openapi: 3.1.0
info:
  title: Simmer API
  description: Agent-native trading infrastructure for prediction markets.
  version: 1.0.0
servers:
  - url: https://api.simmer.markets
security: []
paths:
  /api/sdk/orders/open:
    get:
      summary: Get Open Orders
      description: >-
        Get open (on-book) orders for the authenticated user.


        Returns GTC/GTD orders placed through Simmer that Simmer believes are
        still on

        the CLOB (status='submitted' in our DB). May include stale entries if an
        order

        was filled or cancelled on the CLOB but not yet synced back. Does not
        include

        orders placed directly on Polymarket outside of Simmer.


        Requires API key in Authorization header (rate limited: 60/minute).
      operationId: api_sdk_get_open_orders_api_sdk_orders_open_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````