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

# Get HIP-3 trigger levels JSON Schema

> Get HIP-3 trigger levels JSON Schema contract. Includes route metadata, request parameters, response statuses, examples, and JSON fields for implementation.

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

Currently pending stop-loss and take-profit trigger orders grouped into price buckets near the current mid/mark price. These are voluntary trigger orders, not projected forced liquidations; for forced-liquidation levels use /liquidations/\{symbol}/levels. Current-state map with an as\_of freshness timestamp. Historical snapshots (15-minute cadence, retained from 2026-07-27) are at the /history variant.

## Route Metadata

| Field                | Value                                                 |
| -------------------- | ----------------------------------------------------- |
| Method               | `GET`                                                 |
| Path                 | `/v1/hyperliquid/hip3/orders/{symbol}/trigger-levels` |
| operationId          | `getHip3TriggerLevels`                                |
| Tag                  | HIP-3 - Orders                                        |
| Family               | HIP-3                                                 |
| Deprecated or legacy | no                                                    |

## Request Parameters

### Path Parameters

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getHip3TriggerLevels path parameters",
  "type": "object",
  "required": [
    "symbol"
  ],
  "properties": {
    "symbol": {
      "description": "Trading pair symbol.",
      "type": "string",
      "example": "xyz:TSLA",
      "x-parameter-location": "path"
    }
  }
}
```

### Query Parameters

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getHip3TriggerLevels query parameters",
  "type": "object",
  "properties": {
    "range_pct": {
      "description": "Percentage range around the snapshot mid/mark price. Clamped between 1 and 50. Default 10.",
      "type": "number",
      "default": 10,
      "minimum": 1,
      "maximum": 50,
      "x-parameter-location": "query"
    },
    "buckets": {
      "description": "Number of price buckets. Clamped between 10 and 200. Default 50.",
      "type": "integer",
      "default": 50,
      "minimum": 10,
      "maximum": 200,
      "x-parameter-location": "query"
    },
    "side": {
      "description": "Optional side filter. bid/buy/B keeps the long (or bid) side, ask/sell/A keeps the short (or ask) side; the other side is zeroed.",
      "type": "string",
      "enum": [
        "bid",
        "ask",
        "buy",
        "sell",
        "B",
        "A"
      ],
      "x-parameter-location": "query"
    }
  }
}
```

## Response Contracts

### Status 200

Get HIP-3 trigger levels

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getHip3TriggerLevels response 200",
  "description": "API response containing the pending trigger-order map.",
  "type": "object",
  "properties": {
    "data": {
      "description": "Currently pending stop-loss and take-profit trigger orders grouped into price buckets around the current mid/mark price. Voluntary trigger orders, not projected forced liquidations.",
      "type": "object",
      "required": [
        "as_of",
        "levels",
        "mid_price",
        "total_ask_size",
        "total_bid_size"
      ],
      "properties": {
        "as_of": {
          "description": "UTC RFC3339 server time the pending-trigger state was read. The map is current-state; use this to detect staleness.",
          "type": "string"
        },
        "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": {
          "description": "Current mid/mark price, center of the requested range.",
          "type": "number"
        },
        "total_ask_size": {
          "description": "Total pending ask size across the returned window.",
          "type": "number"
        },
        "total_bid_size": {
          "description": "Total pending bid size across the returned window.",
          "type": "number"
        }
      }
    },
    "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 request

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getHip3TriggerLevels response 400",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    }
  }
}
```

##### OpenAPI example

```json theme={"theme":"github-dark"}
{
  "code": 400,
  "error": "Invalid request parameters"
}
```

### Status 401

Authentication required

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getHip3TriggerLevels response 401",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    }
  }
}
```

##### OpenAPI example

```json theme={"theme":"github-dark"}
{
  "code": 401,
  "error": "Missing or invalid API key. Provide X-API-Key header."
}
```

### Status 429

Rate limit exceeded

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getHip3TriggerLevels response 429",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    }
  }
}
```

##### OpenAPI example

```json theme={"theme":"github-dark"}
{
  "code": 429,
  "error": "Rate limit exceeded"
}
```
