GET /api/v1/orders
Returns open orders for the authenticated user on the specified exchange.
Parameters
Exchange identifier: polymarket, kalshi, limitless, opinion, or predictfun.
Filter orders by a specific market ID.
Response
Whether the request succeeded.
The outcome being traded.
One of: pending, open, filled, partially_filled, cancelled, rejected.
ISO 8601 creation timestamp.
ISO 8601 last update timestamp.
# 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"
}
]
}