Skip to main content
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 calling accountState + openOrders + marketSummary separately, but cheaper (weight 2 vs 5 + 5 + 1 = 11). Weight: 2

Request

Response

Notes

  • Primary account selection (when account_id is omitted): the largest account_value, with account_type == "main" as the tiebreaker
  • Sub-handlers run in parallel: accountState ‖ openOrders, then marketSummary once held symbols are known
  • markets[] only includes symbols the account actually holds — not the entire universe
  • For the full open orders list, call openOrders separately