Source OpenAPI: 0xArchive API 1.5.0; 116 paths; 90 component schemas. Get a combined market summary including price, funding, OI, volume, and liquidation data in a single call.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/summary/{symbol} |
| operationId | getHyperliquidSummary |
| Tag | Hyperliquid - Convenience |
| Family | Hyperliquid Core |
| Deprecated or legacy | no |
Request Parameters
Path Parameters
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidSummary path parameters",
"type": "object",
"required": [
"symbol"
],
"properties": {
"symbol": {
"description": "Coin symbol (e.g., BTC, ETH, SOL)",
"type": "string",
"example": "BTC",
"x-parameter-location": "path"
}
}
}
Response Contracts
Status 200
Market summary for the coinapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidSummary response 200",
"description": "API response wrapping a market summary",
"type": "object",
"properties": {
"data": {
"description": "Combined market summary including price, funding, OI, volume, and liquidation data",
"type": "object",
"required": [
"coin",
"symbol",
"timestamp"
],
"properties": {
"coin": {
"description": "Trading pair symbol (deprecated, use symbol instead)",
"type": "string",
"deprecated": true,
"example": "BTC"
},
"funding_rate": {
"description": "Current funding rate",
"type": "string",
"nullable": true,
"example": "0.00025"
},
"liquidation_volume_24h": {
"description": "Total 24h liquidation volume in USD",
"type": "number",
"nullable": true,
"example": 2500000
},
"long_liquidation_volume_24h": {
"description": "Long 24h liquidation volume in USD",
"type": "number",
"nullable": true,
"example": 1500000
},
"mark_price": {
"description": "Current mark price",
"type": "string",
"nullable": true,
"example": "95000.50"
},
"mid_price": {
"description": "Current mid price",
"type": "string",
"nullable": true,
"example": "95000.00"
},
"open_interest": {
"description": "Current open interest",
"type": "string",
"nullable": true,
"example": "500000.00"
},
"oracle_price": {
"description": "Current oracle price",
"type": "string",
"nullable": true,
"example": "94998.25"
},
"premium": {
"description": "Current premium",
"type": "string",
"nullable": true,
"example": "0.0005"
},
"short_liquidation_volume_24h": {
"description": "Short 24h liquidation volume in USD",
"type": "number",
"nullable": true,
"example": 1000000
},
"symbol": {
"description": "Trading pair symbol",
"type": "string",
"example": "BTC"
},
"timestamp": {
"description": "Summary timestamp (UTC)",
"type": "string",
"format": "date-time",
"example": "2026-02-23T12:00:00.000Z"
},
"volume_24h": {
"description": "24-hour notional volume",
"type": "string",
"nullable": true,
"example": "10000000.00"
}
}
},
"meta": {
"description": "Response metadata",
"type": "object",
"properties": {
"count": {
"description": "Number of records returned",
"type": "integer"
},
"next_cursor": {
"description": "Cursor for pagination (timestamp). Use this value as the `cursor` parameter to fetch the next page of results.",
"type": "string",
"nullable": true
},
"request_id": {
"description": "Unique request ID for support",
"type": "string",
"format": "uuid"
}
}
},
"success": {
"type": "boolean",
"example": true
}
}
}
Status 400
Invalid requestapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getHyperliquidSummary 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": "getHyperliquidSummary 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": "getHyperliquidSummary 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"
}