Source OpenAPI: 0xArchive API 1.5.0; 116 paths; 90 component schemas. Get historical liquidation events for a coin. Data available from December 2025.Documentation Index
Fetch the complete documentation index at: https://docs.0xarchive.io/llms.txt
Use this file to discover all available pages before exploring further.
Route Metadata
| Field | Value |
|---|---|
| Method | GET |
| Path | /v1/hyperliquid/liquidations/{symbol} |
| operationId | getHyperliquidLiquidations |
| Tag | Hyperliquid - Liquidations |
| Family | Hyperliquid Core |
| Deprecated or legacy | no |
Request Parameters
Path Parameters
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidLiquidations path parameters",
"type": "object",
"required": [
"symbol"
],
"properties": {
"symbol": {
"description": "Trading pair symbol (e.g., BTC, ETH)",
"type": "string",
"example": "BTC",
"x-parameter-location": "path"
}
}
}
Query Parameters
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidLiquidations query parameters",
"type": "object",
"properties": {
"start": {
"description": "Start timestamp in Unix milliseconds. Defaults to 24h ago.",
"type": "integer",
"format": "int64",
"x-parameter-location": "query"
},
"end": {
"description": "End timestamp in Unix milliseconds. Defaults to now.",
"type": "integer",
"format": "int64",
"x-parameter-location": "query"
},
"cursor": {
"description": "Cursor for pagination (format: timestamp_tradeId)",
"type": "string",
"x-parameter-location": "query"
},
"limit": {
"description": "Maximum number of results (default: 100, max: 1000)",
"type": "integer",
"default": 100,
"maximum": 1000,
"x-parameter-location": "query"
}
}
}
Response Contracts
Status 200
Liquidation eventsapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidLiquidations response 200",
"description": "API response containing an array of liquidation events",
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"description": "Liquidation event",
"type": "object",
"required": [
"coin",
"liquidated_user",
"liquidator_user",
"price",
"side",
"size",
"symbol",
"timestamp"
],
"properties": {
"closed_pnl": {
"description": "Realized PnL from the liquidation (usually negative)",
"type": "string",
"nullable": true,
"example": "-1250.50"
},
"coin": {
"description": "Trading pair symbol (deprecated, use symbol instead)",
"type": "string",
"deprecated": true,
"example": "BTC"
},
"direction": {
"description": "Upstream direction label (for example `Close Long`, `Close Short`; HIP-3 can also emit `Open Long`, `Open Short`, or rare unclassified values such as `Long > Short`)",
"type": "string",
"nullable": true,
"example": "Close Long"
},
"liquidated_user": {
"description": "Address of the user who was liquidated",
"type": "string",
"example": "0x84eec0068b37919cc8f13d7454073ac167374cc0"
},
"liquidator_user": {
"description": "Address of the liquidator (counterparty)",
"type": "string",
"example": "0x4d969e59b312970cc07af266938a4433ccae0b4c"
},
"mark_price": {
"description": "Mark price at time of liquidation",
"type": "string",
"nullable": true,
"example": "42480.25"
},
"price": {
"description": "Price at which the liquidation was executed",
"type": "string",
"example": "42500.50"
},
"side": {
"description": "Exchange side code for the liquidation-related fill (`A`/`B`). Use `direction` for close/open interpretation, especially on HIP-3.",
"type": "string",
"example": "B"
},
"size": {
"description": "Size of the liquidated position",
"type": "string",
"example": "1.5"
},
"symbol": {
"description": "Trading pair symbol",
"type": "string",
"example": "BTC"
},
"timestamp": {
"description": "Liquidation timestamp (UTC)",
"type": "string",
"format": "date-time",
"example": "2025-05-21T10:30:00.000Z"
},
"trade_id": {
"description": "Trade ID for this liquidation",
"type": "integer",
"format": "int64",
"nullable": true,
"example": 1234567890
},
"tx_hash": {
"description": "Blockchain transaction hash",
"type": "string",
"nullable": true,
"example": "0xe266d353038e679c5d7e042433054f0000e1d8e52f7860ecda84573b9b5a02ca"
}
}
}
},
"meta": {
"type": "object",
"properties": {
"count": {
"description": "Number of records returned",
"type": "integer"
},
"next_cursor": {
"description": "Cursor for pagination (format: timestamp_tradeId)",
"type": "string",
"nullable": true
}
}
},
"success": {
"type": "boolean",
"example": true
}
}
}
Status 400
Invalid requestapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidLiquidations response 400",
"description": "Error response",
"type": "object",
"properties": {
"code": {
"description": "HTTP status code",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
}
}
}
OpenAPI example
{
"code": 400,
"error": "Invalid request parameters"
}
Status 401
Authentication requiredapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidLiquidations response 401",
"description": "Error response",
"type": "object",
"properties": {
"code": {
"description": "HTTP status code",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
}
}
}
OpenAPI example
{
"code": 401,
"error": "Missing or invalid API key. Provide X-API-Key header."
}
Status 429
Rate limit exceededapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidLiquidations response 429",
"description": "Error response",
"type": "object",
"properties": {
"code": {
"description": "HTTP status code",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
}
}
}
OpenAPI example
{
"code": 429,
"error": "Rate limit exceeded"
}