New API users should migrate to deposit wallets. Read the migration guide.
curl --request GET \
--url https://clob.polymarket.com/data/orders \
--header 'POLY_ADDRESS: <api-key>' \
--header 'POLY_API_KEY: <api-key>' \
--header 'POLY_PASSPHRASE: <api-key>' \
--header 'POLY_SIGNATURE: <api-key>' \
--header 'POLY_TIMESTAMP: <api-key>'{
"limit": 100,
"next_cursor": "MTAw",
"count": 2,
"data": [
{
"id": "0xabcdef1234567890abcdef1234567890abcdef12",
"status": "ORDER_STATUS_LIVE",
"owner": "f4f247b7-4ac7-ff29-a152-04fda0a8755a",
"maker_address": "0x1234567890123456789012345678901234567890",
"market": "0x0000000000000000000000000000000000000000000000000000000000000001",
"asset_id": "0xabc123def456...",
"side": "BUY",
"original_size": "100000000",
"size_matched": "0",
"price": "0.5",
"outcome": "YES",
"expiration": "1735689600",
"order_type": "GTC",
"associate_trades": [],
"created_at": 1700000000
},
{
"id": "0xfedcba0987654321fedcba0987654321fedcba09",
"status": "ORDER_STATUS_LIVE",
"owner": "f4f247b7-4ac7-ff29-a152-04fda0a8755a",
"maker_address": "0x1234567890123456789012345678901234567890",
"market": "0x0000000000000000000000000000000000000000000000000000000000000002",
"asset_id": "0xdef456abc789...",
"side": "SELL",
"original_size": "200000000",
"size_matched": "50000000",
"price": "0.75",
"outcome": "NO",
"expiration": "1735689600",
"order_type": "GTC",
"associate_trades": [
"trade-123"
],
"created_at": 1700000001
}
]
}Retrieves open orders for the authenticated user. Returns paginated results. Builder-authenticated clients can also use this endpoint to retrieve orders attributed to their builder account.
curl --request GET \
--url https://clob.polymarket.com/data/orders \
--header 'POLY_ADDRESS: <api-key>' \
--header 'POLY_API_KEY: <api-key>' \
--header 'POLY_PASSPHRASE: <api-key>' \
--header 'POLY_SIGNATURE: <api-key>' \
--header 'POLY_TIMESTAMP: <api-key>'{
"limit": 100,
"next_cursor": "MTAw",
"count": 2,
"data": [
{
"id": "0xabcdef1234567890abcdef1234567890abcdef12",
"status": "ORDER_STATUS_LIVE",
"owner": "f4f247b7-4ac7-ff29-a152-04fda0a8755a",
"maker_address": "0x1234567890123456789012345678901234567890",
"market": "0x0000000000000000000000000000000000000000000000000000000000000001",
"asset_id": "0xabc123def456...",
"side": "BUY",
"original_size": "100000000",
"size_matched": "0",
"price": "0.5",
"outcome": "YES",
"expiration": "1735689600",
"order_type": "GTC",
"associate_trades": [],
"created_at": 1700000000
},
{
"id": "0xfedcba0987654321fedcba0987654321fedcba09",
"status": "ORDER_STATUS_LIVE",
"owner": "f4f247b7-4ac7-ff29-a152-04fda0a8755a",
"maker_address": "0x1234567890123456789012345678901234567890",
"market": "0x0000000000000000000000000000000000000000000000000000000000000002",
"asset_id": "0xdef456abc789...",
"side": "SELL",
"original_size": "200000000",
"size_matched": "50000000",
"price": "0.75",
"outcome": "NO",
"expiration": "1735689600",
"order_type": "GTC",
"associate_trades": [
"trade-123"
],
"created_at": 1700000001
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.polymarket.com/llms.txt
Use this file to discover all available pages before exploring further.
Your API key
Ethereum address associated with the API key
HMAC signature of the request
API key passphrase
Unix timestamp of the request
Order ID (hash) to filter by specific order
Market (condition ID) to filter orders
Asset ID (token ID) to filter orders
Cursor for pagination (base64 encoded offset)
Successfully retrieved orders
Maximum number of results per page
100
Cursor for pagination (base64 encoded offset). Empty if no more results.
"MTAw"
Number of orders in this response
2
Array of open orders
Show child attributes
Was this page helpful?