Skip to main content

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.

Source OpenAPI: 0xArchive API 1.5.0; 116 paths; 90 component schemas. Single price level in the order book

Required Fields

FieldTypeDescription
nintegerNumber of orders at this level
pxstringPrice
szstringTotal size at this price level

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PriceLevel",
  "description": "Single price level in the order book",
  "type": "object",
  "required": [
    "n",
    "px",
    "sz"
  ],
  "properties": {
    "n": {
      "description": "Number of orders at this level",
      "type": "integer",
      "example": 15
    },
    "px": {
      "description": "Price",
      "type": "string",
      "example": "42150.00"
    },
    "sz": {
      "description": "Total size at this price level",
      "type": "string",
      "example": "1.5"
    }
  }
}

Referenced By

No route references were found in OpenAPI.
Last modified on May 18, 2026