Composite “agent startup” bundle. Fetches the caller’s account state, open positions, market summaries for held symbols, and the count of open orders — all in one call with sub-handlers parallelized. Equivalent to callingDocumentation Index
Fetch the complete documentation index at: https://staging-docs.orderly.network/llms.txt
Use this file to discover all available pages before exploring further.
accountState + openOrders + marketSummary separately, but cheaper (weight 2 vs 5 + 5 + 1 = 11).
Weight: 2
Request
| Field | Type | Required | Default | Notes |
|---|---|---|---|---|
address | string | Yes | — | Wallet address |
broker_id | string | No | — | Optional |
account_id | string | No | — | Optional — see “Primary account” below |
Response
| Field | Type | Notes |
|---|---|---|
account | object | Single account snapshot (subset of accountState) |
account.open_order_count | int | Count from openOrders; defaults to 0 on sub-handler failure |
positions[] | array | Open positions (same shape as accountState) |
markets[] | array | One entry per symbol held in positions[]; same shape as marketSummary row |
markets[].24h_change_pct | string | (close - open) / open × 100 (computed at the bundle layer) |
Notes
- Primary account selection (when
account_idis omitted): the largestaccount_value, withaccount_type == "main"as the tiebreaker - Sub-handlers run in parallel:
accountState ‖ openOrders, thenmarketSummaryonce held symbols are known markets[]only includes symbols the account actually holds — not the entire universe- For the full open orders list, call
openOrdersseparately