info (twapHistory)
Hyperliquid node API
twapHistory | Hyperliquid info
The info endpoint with type: “twapHistory” returns a user’s TWAP order history on Hyperliquid.
POST
info (twapHistory)
You can only use this endpoint on the official Hyperliquid public API. It is not available through Chainstack, as the open-source node implementation does not support it yet. See Hyperliquid methods for the full availability breakdown.
info endpoint with type: "twapHistory" returns a user’s TWAP (time-weighted average price) order history — each record’s creation time, state, and current status.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
Request body
type(string, required) — The request type. Must be"twapHistory".user(string, required) — Address in 42-character hexadecimal format.
Response
Returns an array of TWAP history records. Each record contains:time(integer) — Creation time of the record (seconds since epoch).state(object) — The state of the TWAP order (coin, size, executed amounts, side, and related fields).status(object) — The current status, for example{"status": "finished"},{"status": "activated"},{"status": "terminated"}, or{"status": "error", "description": "..."}.twapId(integer) — The ID of the TWAP order.
Example request
Example response
Use cases
Theinfo endpoint with type: "twapHistory" is useful for:
- Auditing a user’s past TWAP orders
- Trading dashboards that show TWAP execution history
- Analyzing TWAP order outcomes over time
Body
application/json
Last modified on June 24, 2026