info (userTwapSliceFillsByTime)
Hyperliquid node API
userTwapSliceFillsByTime | Hyperliquid info
The info endpoint with type: “userTwapSliceFillsByTime” returns a user’s TWAP slice fills within a time range on Hyperliquid.
POST
info (userTwapSliceFillsByTime)
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: "userTwapSliceFillsByTime" returns a user’s TWAP slice fills within a time range. Each TWAP order executes as a series of slices; this method returns those individual slice fills filtered by time.
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"userTwapSliceFillsByTime".user(string, required) — Address in 42-character hexadecimal format.startTime(integer, required) — Start time in milliseconds since epoch (inclusive).endTime(integer, optional) — End time in milliseconds since epoch (inclusive). Defaults to the current time.
Response
Returns an array of TWAP slice fills. Each entry is a fill record (with the standard fill fields such ascoin, px, sz, side, time, and hash) paired with the TWAP order ID it belongs to.
Example request
Example response
Use cases
Theinfo endpoint with type: "userTwapSliceFillsByTime" is useful for:
- Reconciling TWAP executions within a specific time window
- Backtesting and performance analysis of TWAP strategies
- Reporting on slice-level execution detail
Body
application/json
Request type
Available options:
userTwapSliceFillsByTime User address in 42-character hexadecimal format.
Start time in milliseconds since epoch (inclusive).
End time in milliseconds since epoch (inclusive). Optional; defaults to now.
Response
200 - application/json
The user's TWAP slice fills within the time range.
Last modified on June 24, 2026