HTTP endpoints
Get open orders
Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| account | yes | string (hex) | Ethereum-style account address for the sub-account context. |
| pagination_data | yes | object | Pagination segment containing pageNumber and pageSize (serialized per gateway contract). |
Response fields
| Parameter | Required | Type | Description |
|---|---|---|---|
orders | no | array | null | — |
orders[].filledQuantity | yes | string | — |
orders[].instrumentId | yes | integer (int64) | An instrument identifier (8-byte hash). |
orders[].orderId | yes | integer (int64) | — |
orders[].orderType | yes | string | — |
orders[].price | yes | string | — |
orders[].quantity | yes | string | — |
orders[].side | yes | string | — |
orders[].timestamp | yes | integer (int64) | — |
orders[].trader | yes | string (hex) | An Ethereum-style account address (20 bytes). |
orders[].triggerPrice | no | string | null | — |
orders[].triggerType | no | string | — |
orders[].twapFilledQuantity | no | string | null | — |
orders[].twapFrequency | no | integer | null | — |
orders[].twapInterval | no | integer | null | — |
orders[].twapOriginalQuantity | no | string | null | — |
orders[].twapRandomize | no | boolean | null | — |
pageNumber | yes | integer | — |
pageSize | yes | integer | — |
Response example
A sample 200 JSON body is attached to this operation as an OpenAPI example (Mintlify shows it in the example panel, similar to other exchange API docs).
GET
Get open orders
Path Parameters
Ethereum-style account address for the sub-account context. An Ethereum-style account address (20 bytes).
Pagination segment containing pageNumber and pageSize (serialized per gateway contract).
Previous
Get order events### Parameters
| Parameter | Required | Type | Description |
| --------- | -------- | ---- | ----------- |
| account | yes | string (hex) | Ethereum-style account address for the sub-account context. |
| pagination_data | yes | object | Pagination segment containing `pageNumber` and `pageSize` (serialized per gateway contract). |
### Response fields
| Parameter | Required | Type | Description |
| --------- | -------- | ---- | ----------- |
| `orderEvents` | no | array \| null | — |
| `orderEvents[].account` | yes | string (hex) | An Ethereum-style account address (20 bytes). |
| `orderEvents[].eventData` | yes | object \| object \| string \| object \| object | — |
| `orderEvents[].instrument` | yes | integer (int64) | An instrument identifier (8-byte hash). |
| `orderEvents[].orderId` | yes | integer (int64) | — |
| `pageNumber` | yes | integer | — |
| `pageSize` | yes | integer | — |
### Response example
A sample **`200`** JSON body is attached to this operation as an OpenAPI **example** (Mintlify shows it in the example panel, similar to other exchange API docs).
Next
Get open orders