/v1/hyperliquid/trades/{symbol} returns the fill-level tape with the wallet behind each execution, back to April 2023 and continuous to the current hour, more than 2 billion records.
Trades route
Fill-level trade routes by venue family.
Hyperliquid REST
Core perp route family.
What A Fill Row Carries
Each row is one execution with the context most fills APIs drop:| Field | What it tells you |
|---|---|
side | B (buy) or A (sell) |
crossed | true if this wallet took liquidity (taker), false if it rested (maker) |
fee | Fee paid; a negative value is a maker rebate |
user_address | The wallet behind the fill, where the venue reports it |
direction | Position effect, such as Open Long or Close Short |
closed_pnl | Realized PnL on a closing fill |
start_position | Position size before this fill |
tx_hash | The chain transaction that carried the execution |
maker_address, taker_address, order_id, and cloid appear where applicable, so a fill can be joined back to the order that produced it. Prices, sizes, and fees are decimal strings.
Fills Intent To Route Map
| Fill question | Route |
|---|---|
| The fill tape for one symbol and window | /v1/hyperliquid/trades/{symbol} |
| TP/SL triggers before and after they fire | /v1/hyperliquid/orders/{symbol}/tpsl |
| The lifecycle around each fill: placed, partially filled, filled, canceled | /v1/hyperliquid/orders/{symbol}/history |
| The resting orders those fills executed against | /v1/hyperliquid/orderbook/{symbol}/l4/history |
{success, data, meta} envelope, cursor pagination through meta.next_cursor, and a meta.request_id per page.
Wallet Attribution
Hyperliquid fills carryuser_address wherever the venue reports it, so the tape answers wallet-level questions directly: what one account filled in a window, whether it made or took liquidity on each execution, and what each fill did to its position. The TP/SL and order-history routes accept a user_address filter, which turns one wallet’s risk management and order behavior into a bounded query instead of a full-tape scan.
TP/SL Lifecycle Around Fills
A take-profit or stop-loss rests as a trigger order until its price condition fires, and when it fires it becomes an ordinary fill. To follow that lifecycle, pair/v1/hyperliquid/orders/{symbol}/tpsl for the triggers with /v1/hyperliquid/trades/{symbol} for the resulting executions, joining on the order that placed the trigger. A trigger that never fired and one that fired are different events; the status field separates them.
Coverage Window
Hyperliquid trade history starts April 2023 and runs continuous to the current hour. Order-level (L4) book surfaces start March 2026. Check the exact window and any gaps for your symbols on Venue coverage and Data quality before a backtest or export depends on the output.Maker And Taker Analysis
Thecrossed flag and the fee sign make maker/taker studies a column filter instead of a reconstruction job. Count taker fills against maker fills for one wallet to classify its execution style, sum signed fees to separate cost from rebate income, and use direction with start_position to tell opening flow from closing flow inside the same window. Because every row carries the same fields, the query that classifies one wallet scales to the whole tape.
Stream Fills Live
Thetrades channel streams fills as they execute. Order events, including trigger placements and cancels, stream through l4_orders.