# CRYPTYX IV Surface — Implied Volatility Surface for Digital Assets

> CRYPTYX IV Surface — Implied Volatility Surface for Digital Assets is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the implied volatility surface (IV, delta, expiry, strike) for a given cryptocurrency asset

## Facts

- Endpoint: GET https://cryptyx.ai/api/iv-surface
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-iv-surface-implied-volatility-surface-for-digital-assets-d718d59e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6zBy8A1k84YSXCa4U_gHO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cryptyx-iv-surface-implied-volatility-surface-for-digital-assets-d718d59e
```

Example prompt: Pull the implied volatility surface for BTC from CRYPTYX — I need the IV, delta, expiry dates, and strikes across the full surface.

## When to prefer this

Use this endpoint when you need structured implied volatility surface data for a specific crypto asset, including IV, delta, expiry, and strike dimensions. Prefer this over generic price feeds when performing options pricing, hedging analysis, or volatility trading on digital assets.

## Known failure modes

- Unsupported asset symbol returns empty surface or error
- Invalid or missing asset parameter returns 400-level error
- Payment failure (x402) prevents data retrieval
- Stale or unavailable market data may result in incomplete surface
- Rate limiting or quota exceeded returns 429 error

## How this service works

Latest-day Deribit IV term structure for one asset — per-tenor ATM IV, 25-delta risk reversal, butterfly, plus current put/call OI ratio. BTC and ETH only. Feeds the OPT factor class; use for skew reads and vol-term structuring.

## Output

A JSON object containing the asset symbol and an array of IV surface data points, each with implied volatility (IV), delta, expiry date, and strike price — covering the full options surface for the requested crypto asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "asset"
 ],
 "properties": {
  "asset": {
   "type": "string",
   "description": "Asset symbol (e.g. BTC, ETH, SOL)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "asset": "BTC",
 "surface": [
  {
   "iv": 0.45,
   "delta": 0.55,
   "expiry": "2026-05-30",
   "strike": 70000
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-iv-surface-implied-volatility-surface-for-digital-assets-d718d59e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptyx.ai](https://www.zero.xyz/host/cryptyx.ai/llms.txt)
