List Trades
Lists trades you can access, newest first. User credentials see their own trades and those of accounts they belong to, including connected accounts; account credentials see their account and its connected accounts. These are submission records, not fill or position history.
Query parameters
Only return trades for this account or user, prefixed biz_ or user_.
Only return trades with this submission status.
Only return trades of this kind, such as create_orders for order submissions.
Field to sort by.
Sort direction.
Number of results to return from the start of the range.
Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.
Number of results to return from the end of the range.
Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.
Response
trades listed
Example response
{
"data": [
{
"account_id": "biz_xxxxxxxxxxxxxx",
"cancellations": [
{
"id": "trdcloid_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"status": "canceled"
}
],
"completed_at": "2026-01-01T12:00:00.000Z",
"created_at": "2026-01-01T12:00:00.000Z",
"failure_code": "pre_submission_error",
"id": "trop_xxxxxxxxxxxxxx",
"instrument_type": "perpetual",
"leverage": {
"leverage": 5,
"margin_mode": "isolated",
"market": "ETH"
},
"metadata": {},
"object": "trade",
"operation_type": "cancel_orders",
"orders": [
{
"average_price": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"hyperliquid": {
"trigger_price": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
}
},
"object": "trading_order",
"order_type": "limit",
"price": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"side": "buy",
"status": "open"
}
],
"provider": "hyperliquid",
"requested_orders": [
{
"client_order_id": "trdcloid_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"market": "ETH",
"order_type": "stop_loss",
"parent_client_order_id": "trdcloid_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"price": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"side": "sell",
"size": "0.02",
"trigger_price": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
}
}
],
"status": "completed",
"trade_id": "trop_xxxxxxxxxxxxxx",
"updated_at": "2026-01-01T12:00:00.000Z"
}
],
"page_info": {
"start_cursor": "WyJjdXJzb3IiLDFd"
}
}