Returns the wallet’s open-orders snapshot — orders that are placed and resting in the book right now. Filled, canceled, or rejected orders do NOT appear here (useDocumentation Index
Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt
Use this file to discover all available pages before exploring further.
/v1/wallets/:addr/trades for fill history).
Endpoint
Query parameters
| Param | Type | Default | Description |
|---|---|---|---|
outcome_id | int | — | Restrict to a single market |
side | int | both | Filter to side 0 (Yes) or 1 (No) |
limit | int | 100 | Max rows (cap 1000) |
Response
| Field | Description |
|---|---|
size_remaining | Unfilled portion of the order |
size_original | Original size at placement (size_remaining ≤ size_original) |
tif | Time-in-force: Alo (post-only), Gtc (resting), Ioc (immediate-or-cancel), FrontendMarket |
placed_at | When the order first hit the book |
last_status_at | Latest order-event timestamp (placement, partial fill, etc.) |
Use cases
- Open-orders panel in a portfolio UI.
- Maker-flow tracking — pair with
/positionsto see exposure + intent on a wallet. - Cancel-side analytics — diff snapshots over time to detect order churn / spoofing patterns.
Examples
Notes
- Only orders where
size_remaining > 0appear. A fully-filled order moves into/trades. IocandFrontendMarketorders rarely sit here long enough to be seen — they fill or cancel within milliseconds.- Orders sorted newest-first by
placed_at.