Skip to main content
GET /api/v1/orders Returns open orders for the authenticated user on the specified exchange.

Parameters

exchange
string
required
Exchange identifier: polymarket, kalshi, limitless, opinion, or predictfun.
market_id
string
Filter orders by a specific market ID.

Response

success
boolean
Whether the request succeeded.
data
Order[]
# All open orders
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/orders?exchange=polymarket"

# Filtered by market
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/orders?exchange=polymarket&market_id=0x1234abcd"
{
  "success": true,
  "data": [
    {
      "id": "order_abc123",
      "market_id": "0x1234abcd",
      "outcome": "Yes",
      "side": "buy",
      "price": 0.65,
      "size": 100.0,
      "filled": 25.0,
      "status": "partially_filled",
      "created_at": "2025-01-26T10:00:00Z",
      "updated_at": "2025-01-26T10:30:00Z"
    }
  ]
}