Skip to main content
POST
/
v1beta1
/
get_open_orders
Get Open Orders
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"
    }
  ]
}

Body

application/json

Request to get open orders.

accounts
string[]

A list of accounts to filter upon and return in the response. This field is optional.

symbols
string[]

A list of symbols to filter upon and return in the response. This field is optional.

Response

A successful response.

orders
object[]

A snapshot list of the current working orders.