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

# ApiResponsePriceSnapshotArray Schema

> API response containing an array of price snapshots. Includes parameters, response shapes, examples, and implementation notes from the 0xArchive contract.

Source OpenAPI: 0xArchive API 1.5.0; 140 paths; 119 component schemas.

API response containing an array of price snapshots

## Required Fields

No required fields are declared on this component schema.

## JSON Schema

```json theme={"theme":"github-dark"}
{
  "$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

* [GET /v1/hyperliquid/hip3/prices/{symbol}](/schemas/operations/get-hip3-price-history)
* [GET /v1/hyperliquid/hip4/prices/{symbol}](/schemas/operations/get-hip4-price-history)
* [GET /v1/hyperliquid/prices/{symbol}](/schemas/operations/get-hyperliquid-price-history)
* [GET /v1/lighter/prices/{symbol}](/schemas/operations/get-lighter-price-history)
