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. API response containing an array of price snapshots

Required Fields

No required fields are declared on this component schema.

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ApiResponsePriceSnapshotArray",
  "description": "API response containing an array of price snapshots",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "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"
          }
        }
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "count": {
          "description": "Number of records returned",
          "type": "integer"
        },
        "next_cursor": {
          "description": "Cursor for pagination",
          "type": "string",
          "nullable": true
        }
      }
    },
    "success": {
      "type": "boolean",
      "example": true
    }
  }
}

Referenced By

Last modified on May 18, 2026