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
| Field | Type | Description |
|---|
n | integer | Number of orders at this level |
px | string | Price |
sz | string | Total 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.