get_liquidations_by_user
Get liquidation history for a Hyperliquid user. Returns events where the user was liquidated or acted as liquidator, with optional coin filter.
Instructions
Get Hyperliquid liquidation history for a specific user address. Returns liquidations where the user was either liquidated or was the liquidator. Filter by coin optionally.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | User's wallet address (e.g., '0x1234...') | |
| start | No | Start timestamp (Unix ms or ISO). Defaults to 24h ago. | |
| end | No | End timestamp (Unix ms or ISO). Defaults to now. | |
| limit | No | Max records to return (default 100, max 1000) | |
| cursor | No | Pagination cursor from previous response's nextCursor | |
| coin | No | Optional coin filter |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| records | Yes | Array of result records | |
| count | Yes | Total number of records in the full result set | |
| nextCursor | No | Cursor for next page, if more results available |