Get user liquidation history
Handles GET /v1/users/{user_pubkey}/liquidation-history via get.v1.users.by_user_pubkey.liquidation_history.
Authorizations
Bearer access token issued by /v1/auth/* login endpoints.
Path Parameters
Query Parameters
Trader PDA index to scope history. Defaults to 0.
Optional subaccount index. If omitted, all subaccounts under the PDA are included.
Optional market symbol filter.
Maximum number of events to return (max 100, default 100).
Opaque cursor for older or newer pagination.
Response
Generic paginated response wrapper with bidirectional cursor support.
The cursor system supports both forward (newer) and backward (older) pagination:
prev_cursor: Use this cursor to poll for new items (items newer than the current result set)next_cursor: Use this cursor to load more items (items older than the current result set)
The direction is embedded in the cursor itself, so clients just need to pass
the appropriate cursor to the cursor parameter.
Whether there are more results available after this page
Opaque cursor for fetching the next page of older results.
Pass this value as the cursor parameter in the next request to load
more.
Opaque cursor for fetching newer items (for polling).
Pass this value as the cursor parameter to get items newer than the
first item in data.