> ## 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.

# ApiResponseLiquidationLevelsHistory Schema

> Paginated historical liquidation-levels snapshots, ascending by snapshotts. Includes route metadata, schemas, examples, and implementation notes.

Source OpenAPI: 0xArchive API 1.6.1; 147 paths; 128 component schemas.

Paginated historical liquidation-levels snapshots, ascending by snapshot\_ts. When a page is full, meta.next\_cursor carries the cursor for the next page.

## Required Fields

No required fields are declared on this component schema.

## JSON Schema

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ApiResponseLiquidationLevelsHistory",
  "description": "Paginated historical liquidation-levels snapshots, ascending by snapshot_ts. When a page is full, meta.next_cursor carries the cursor for the next page.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "description": "One historical liquidation-levels snapshot. levels is omitted when summary=true.",
        "type": "object",
        "required": [
          "block_number",
          "flagged_notional",
          "mid_price",
          "snapshot_ts",
          "total_long",
          "total_short"
        ],
        "properties": {
          "block_number": {
            "type": "integer",
            "format": "int64"
          },
          "flagged_notional": {
            "type": "number"
          },
          "levels": {
            "type": "array",
            "items": {
              "description": "One price bucket of projected forced-liquidation exposure.",
              "type": "object",
              "required": [
                "long_count",
                "long_notional",
                "price",
                "short_count",
                "short_notional"
              ],
              "properties": {
                "long_count": {
                  "description": "Number of long positions in this bucket.",
                  "type": "integer"
                },
                "long_notional": {
                  "description": "USD notional of long positions projected to liquidate in this bucket.",
                  "type": "number"
                },
                "price": {
                  "description": "Bucket center price.",
                  "type": "number"
                },
                "short_count": {
                  "description": "Number of short positions in this bucket.",
                  "type": "integer"
                },
                "short_notional": {
                  "description": "USD notional of short positions projected to liquidate in this bucket.",
                  "type": "number"
                }
              }
            }
          },
          "mid_price": {
            "type": "number"
          },
          "snapshot_ts": {
            "type": "string"
          },
          "total_long": {
            "type": "number"
          },
          "total_short": {
            "type": "number"
          }
        }
      }
    },
    "meta": {
      "description": "Response metadata",
      "type": "object",
      "properties": {
        "count": {
          "description": "Number of records returned",
          "type": "integer"
        },
        "coverage_from": {
          "description": "Earliest coverage for the requested symbol and data type. Present only when the requested window ends before coverage begins.",
          "type": "string",
          "format": "date-time"
        },
        "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
        },
        "notice": {
          "description": "Human-readable advisory about the response. Currently used when the requested window ends before coverage begins for the symbol; may carry other advisories in future.",
          "type": "string"
        },
        "request_id": {
          "description": "Unique request ID for support",
          "type": "string",
          "format": "uuid"
        }
      }
    },
    "success": {
      "type": "boolean",
      "example": true
    }
  }
}
```

## Referenced By

* [GET /v1/hyperliquid/hip3/liquidations/{symbol}/levels/history](/schemas/operations/get-hip3-liquidation-levels-history)
* [GET /v1/hyperliquid/liquidations/{symbol}/levels/history](/schemas/operations/get-hyperliquid-liquidation-levels-history)
