cURL
curl --request POST \ --url https://traderapi.us-east-1.privatelink.preprod.polymarketexchange.com/api/v1beta1/get_open_orders \ --header 'Content-Type: application/json' \ --data ' { "accounts": [ "<string>" ], "symbols": [ "<string>" ] } '
{ "orders": [ { "id": "1ABC2DEF3GHI4", "account": "trading-account-456", "symbol": "aec-nfl-buf-nyj-2025-01-15", "side": "SIDE_BUY", "type": "ORDER_TYPE_LIMIT", "order_qty": "100", "price": "5500", "price_scale": "10000", "leaves_qty": "100", "cum_qty": "0", "state": "ORDER_STATE_NEW", "time_in_force": "TIME_IN_FORCE_GOOD_TILL_CANCEL", "create_time": "2025-01-15T18:30:00Z" } ] }
Returns a snapshot of working orders.
Request to get open orders.
A list of accounts to filter upon and return in the response. This field is optional.
A list of symbols to filter upon and return in the response. This field is optional.
A successful response.
A snapshot list of the current working orders.
Show child attributes