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

# Get Active Market Orders

> Get active Polymarket orders for a specific market.



## OpenAPI

````yaml /openapi.json get /api/v1/wallet/pol/{wallet_id}/orders/{condition_id}/active
openapi: 3.1.0
info:
  title: Synthesis API
  version: 1.0.0
  description: Unified prediction market API for Polymarket and Kalshi.
servers:
  - url: https://synthesis.trade
security: []
tags:
  - name: Projects
    description: Create and manage project accounts, sessions, and account API keys.
  - name: Accounts
    description: >-
      Authenticate and manage account-level sessions, account API keys, and
      public account preferences.
  - name: Markets
    description: Unified market discovery and analytics across Polymarket and Kalshi.
  - name: Polymarket
    description: Polymarket market data, prices, orderbooks, trades, and holders endpoints.
  - name: Kalshi
    description: Kalshi market data, events, history, leaderboard, and profile endpoints.
  - name: Wallets
    description: Wallet management routes. Each wallet supports multiple chains.
  - name: Polygon
    description: >-
      Polygon wallet routes for balances, orders, minting, redemption,
      withdrawals, and swaps.
  - name: Polygon Copytrades
    description: Polymarket copytrade configuration and management for Polygon wallets.
  - name: Solana
    description: >-
      Solana wallet routes used for Kalshi balances, KYC, orders, redemption,
      and withdrawals.
  - name: News
    description: News endpoints with market and event matching.
  - name: WebSockets
    description: >-
      Real-time streaming endpoints for orderbooks, trades, balances, and live
      data feeds.
paths:
  /api/v1/wallet/pol/{wallet_id}/orders/{condition_id}/active:
    get:
      tags:
        - Polygon
      summary: Get Active Market Orders
      description: Get active Polymarket orders for a specific market.
      operationId: get-polygon-active-market-orders
      parameters:
        - name: wallet_id
          in: path
          required: true
          schema:
            type: string
        - name: condition_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Active market orders
          content:
            application/json:
              example:
                success: true
                response:
                  - order_id: >-
                      0xf9e8d7c6b5a4f9e8d7c6b5a4f9e8d7c6b5a4f9e8d7c6b5a4f9e8d7c6b5a4f9e8
                    token_id: >-
                      21742633143463906290569050155826241533067272736897614950488156847949938836455
                    type: LIMIT
                    side: BUY
                    shares: '152.300'
                    filled: '0'
                    price: '0.61'
                    status: ACTIVE
                    created_at: 1736937000
                  - order_id: b2c3d4e5-f6a7-8901-bcde-f23456789012
                    token_id: >-
                      21742633143463906290569050155826241533067272736897614950488156847949938836455
                    type: STOPLOSS
                    side: SELL
                    shares: '152.300'
                    filled: '0'
                    price: '0.45'
                    status: ACTIVE
                    created_at: 1736937100
      security:
        - AccountApiKey: []
        - AccountSession: []
components:
  securitySchemes:
    AccountApiKey:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Account secret API key.
    AccountSession:
      type: http
      scheme: bearer
      description: Account session token.

````