Skip to main content
GET
/
orders
Get Orders
curl --request GET \
  --url https://api.equities.polymarket.com/v1/orders \
  --header 'POLYMARKET-PROXY: <api-key>' \
  --header 'POLYMARKET-SECRET: <api-key>'
[
  {
    "oid": 123,
    "iid": 123,
    "buy": true,
    "qty": "10.00",
    "tif": "gtc",
    "ro": true,
    "rest": "9.00",
    "fill": "1.00",
    "cts": 1767225600000,
    "uts": 1767225600000,
    "im": "10.00",
    "p": "100.00"
  }
]

Authorizations

POLYMARKET-PROXY
string
header
required

Proxy address

POLYMARKET-SECRET
string
header
required

Correponding proxy secret

Query Parameters

oid
integer

Order ID

Response

Orders response.

oid
integer
required

Order ID

iid
integer
required

Instrument ID

buy
boolean
required

Is buy

qty
string
required

Quantity in no. of contracts

Example:

"10.00"

tif
enum<string>
required

Time in force

Available options:
gtc,
ioc,
fok
ro
boolean
required

Reduce only

rest
string
required

Resting quantity

Example:

"9.00"

fill
string
required

Filled quantity

Example:

"1.00"

cts
integer
required

Create timestamp in milliseconds

Example:

1767225600000

uts
integer
required

Update timestamp in milliseconds

Example:

1767225600000

im
string
required

Initial margin in USD

Example:

"10.00"

p
string

Price

Example:

"100.00"