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

# ApiResponseTriggerLevelsHistory Schema

> Paginated historical trigger-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 trigger-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": "ApiResponseTriggerLevelsHistory",
  "description": "Paginated historical trigger-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 trigger-levels snapshot (15-minute cadence). levels is omitted when summary=true.",
        "type": "object",
        "required": [
          "mid_price",
          "snapshot_ts",
          "total_ask_size",
          "total_bid_size"
        ],
        "properties": {
          "levels": {
            "type": "array",
            "items": {
              "description": "Aggregated currently open trigger orders at one rounded price bucket.",
              "type": "object",
              "required": [
                "ask_count",
                "ask_size",
                "bid_count",
                "bid_size",
                "price_bucket"
              ],
              "properties": {
                "ask_count": {
                  "description": "Number of ask-side trigger orders in the bucket.",
                  "type": "integer",
                  "format": "int64",
                  "example": 9
                },
                "ask_size": {
                  "description": "Ask-side trigger size in the bucket.",
                  "type": "number",
                  "example": 18.75
                },
                "bid_count": {
                  "description": "Number of bid-side trigger orders in the bucket.",
                  "type": "integer",
                  "format": "int64",
                  "example": 12
                },
                "bid_size": {
                  "description": "Bid-side trigger size in the bucket.",
                  "type": "number",
                  "example": 31.25
                },
                "price_bucket": {
                  "description": "Rounded trigger price bucket.",
                  "type": "number",
                  "example": 64200
                }
              }
            }
          },
          "mid_price": {
            "type": "number"
          },
          "snapshot_ts": {
            "type": "string"
          },
          "total_ask_size": {
            "type": "number"
          },
          "total_bid_size": {
            "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/orders/{symbol}/trigger-levels/history](/schemas/operations/get-hip3-trigger-levels-history)
* [GET /v1/hyperliquid/orders/{symbol}/trigger-levels/history](/schemas/operations/get-hyperliquid-trigger-levels-history)
