Return positions, fills, open orders, and (optionally) builder approval state for an end-user in one normalized payload.
Each section is fetched in parallel from the Hyperliquid info API.
If a single upstream call fails the corresponding section returns null
and an entry is added to partial_errors; if every section fails the
endpoint responds with 502.
Pass builder to additionally include the user’s current approved max
fee rate for that builder (used by dashboards to decide whether to prompt
the user to sign an approveBuilderFee action).
Documentation Index
Fetch the complete documentation index at: https://docs.compasslabs.ai/llms.txt
Use this file to discover all available pages before exploring further.
End-user EOA whose activity should be fetched.
Optional builder address. When provided, the response includes the current builder-fee approval state for this (owner, builder) pair.
Successful Response
Aggregated HL activity for a single end-user.
Any section may be null if its upstream HL call failed — see
partial_errors for details. positions/fills/open_orders
are always either a populated list or null; an empty list means the
user has no activity of that type, not a failure.
Owner address that was queried (checksummed)
Open positions (null if the upstream call failed)
Total account value in USDC (null if positions failed)
Withdrawable USDC balance (null if positions failed)
Recent fills (null if the upstream call failed)
Resting orders (null if the upstream call failed)
Builder approval state — only present when the builder query parameter was supplied (null on upstream failure).
One entry per section that failed to load.