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

# PriceSnapshot Schema

> Price snapshot with mark, oracle, and mid prices. Includes parameters, response shapes, examples, and implementation notes from the 0xArchive contract.

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

Price snapshot with mark, oracle, and mid prices

## Required Fields

| Field       | Type             | Description              |
| ----------- | ---------------- | ------------------------ |
| `timestamp` | string:date-time | Snapshot timestamp (UTC) |

## JSON Schema

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

Use this shared schema with the generated component index and route-specific endpoint pages during implementation.
