Messages
{
"message": "emitOptionsRecentOrders",
"content": {
"clientRequestId": "f35fd4a3-749c-4562-bfe6-5b896b887b59",
"market": "BTC-10JUL26-55000-C",
"limit": 100
}
}{
"resultType": "optionsRecentOrders",
"market": "BTC-10JUL26-55000-C",
"data": {
"orders": [
{
"orderId": "01KWKXFHQJTQMNWPT1Y8X54HJP",
"market": "BTC-10JUL26-55000-C",
"side": "buy",
"type": "market",
"fillType": "complete",
"price": "7000",
"quantity": "1",
"filledQuantity": "1",
"avgFillPrice": "6948.86",
"leverage": "0",
"createdAt": 1783079880436,
"updatedAt": 1783079880436
}
],
"statusCode": 200,
"clientRequestId": "f35fd4a3-749c-4562-bfe6-5b896b887b59"
}
}{
"resultType": "optionsRecentOrdersDelta",
"market": "BTC-10JUL26-55000-C",
"data": {
"orders": [
{
"orderId": "01KWKXFHQJTQMNWPT1Y8X54HJP",
"market": "BTC-10JUL26-55000-C",
"side": "buy",
"type": "market",
"fillType": "complete",
"price": "7000",
"quantity": "1",
"filledQuantity": "1",
"avgFillPrice": "6948.86",
"leverage": "0",
"createdAt": 1783079880436,
"updatedAt": 1783079880436
}
],
"statusCode": 200
}
}WS Reference
Recent Orders Stream
Recent order history.
WSS
?product=options&market=
{market}
&expiration=
{expiration}
&strike=
{strike}
&type=
{type}
&subscriptions=optionsRecentOrders
This stream is available on the
optionsRecentOrders subscription. It provides your recent order history.
Snapshot vs. Delta
TheemitOptionsRecentOrders request returns a snapshot via optionsRecentOrders. Once subscribed, optionsRecentOrdersDelta messages carry new or updated history entries in the same shape.Messages
{
"message": "emitOptionsRecentOrders",
"content": {
"clientRequestId": "f35fd4a3-749c-4562-bfe6-5b896b887b59",
"market": "BTC-10JUL26-55000-C",
"limit": 100
}
}{
"resultType": "optionsRecentOrders",
"market": "BTC-10JUL26-55000-C",
"data": {
"orders": [
{
"orderId": "01KWKXFHQJTQMNWPT1Y8X54HJP",
"market": "BTC-10JUL26-55000-C",
"side": "buy",
"type": "market",
"fillType": "complete",
"price": "7000",
"quantity": "1",
"filledQuantity": "1",
"avgFillPrice": "6948.86",
"leverage": "0",
"createdAt": 1783079880436,
"updatedAt": 1783079880436
}
],
"statusCode": 200,
"clientRequestId": "f35fd4a3-749c-4562-bfe6-5b896b887b59"
}
}{
"resultType": "optionsRecentOrdersDelta",
"market": "BTC-10JUL26-55000-C",
"data": {
"orders": [
{
"orderId": "01KWKXFHQJTQMNWPT1Y8X54HJP",
"market": "BTC-10JUL26-55000-C",
"side": "buy",
"type": "market",
"fillType": "complete",
"price": "7000",
"quantity": "1",
"filledQuantity": "1",
"avgFillPrice": "6948.86",
"leverage": "0",
"createdAt": 1783079880436,
"updatedAt": 1783079880436
}
],
"statusCode": 200
}
}market
type:string
required
A specific market (e.g. BTC-USDT) or ALL.
expiration
type:string
required
Contract expiration, e.g. 24JUN26. Requires market; omit to match every expiration.
strike
type:string
required
Strike price, e.g. 62000. Requires expiration; omit to match every strike.
type
type:string
required
C (call) or P (put). Requires strike; omit to match both.
Sec-WebSocket-Protocol
type:httpApiKey
Supply as authorization#<JWT> during the WebSocket handshake.
Emit Options Recent Orders
type:object
Recent Orders Snapshot
type:object
Response to emitOptionsRecentOrders.
Recent Order Delta
type:object
Pushed with new or updated history entries, in the same shape as the snapshot.
⌘I