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. Price snapshot with mark, oracle, and mid prices

Required Fields

FieldTypeDescription
timestampstring:date-timeSnapshot timestamp (UTC)

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PriceSnapshot",
  "description": "Price snapshot with mark, oracle, and mid prices",
  "type": "object",
  "required": [
    "timestamp"
  ],
  "properties": {
    "mark_price": {
      "description": "Mark price",
      "type": "string",
      "nullable": true,
      "example": "95000.50"
    },
    "mid_price": {
      "description": "Mid price",
      "type": "string",
      "nullable": true,
      "example": "95000.00"
    },
    "oracle_price": {
      "description": "Oracle price",
      "type": "string",
      "nullable": true,
      "example": "94998.25"
    },
    "timestamp": {
      "description": "Snapshot timestamp (UTC)",
      "type": "string",
      "format": "date-time",
      "example": "2026-02-23T12:00:00.000Z"
    }
  }
}

Referenced By

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