# Deribit Options Live Quote

> Deribit Options Live Quote is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches a live crypto options quote from Deribit including mark price, implied volatility, open interest, and Greeks for BTC/ETH/SOL options

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/options/price
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deribit-options-live-quote-0f61dcd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4C0q5ATP7jLuHCwwurk8O

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 deribit-options-live-quote-0f61dcd7 -d '<json body>'
```

Example prompt: What's the current mark price, implied volatility, and delta for the BTC call option with a $70,000 strike expiring 28AUG26 on Deribit?

## When to prefer this

Use this endpoint when you need real-time, exchange-sourced options data from Deribit for BTC, ETH, or SOL — including accurate mark price, implied volatility, and Greeks. Prefer over generic market data APIs when you need listed options pricing with full Greek sensitivities directly from the exchange.

## Known failure modes

- Invalid instrument name returns an error — must match Deribit format (e.g. BTC-28AUG26-70000-C)
- Unsupported currency (only BTC, ETH, SOL supported)
- Expired option or non-existent expiry returns not found
- Strike price not listed on Deribit returns error
- Network or exchange downtime causes timeout or empty response

## How this service works

Live crypto option quote from Deribit: mark price, IV, open interest, greeks, underlying. Send { instrument } (e.g. BTC-28AUG26-70000-C) or { currency, strike, type, expiry? }. Real listed-option pricing for BTC/ETH/SOL.

## Output

Returns a live options quote from Deribit including mark price, implied volatility (IV), open interest, and full Greeks (delta, gamma, theta, vega) along with the underlying spot price for the specified BTC, ETH, or SOL option contract.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string",
   "description": "call or put"
  },
  "expiry": {
   "type": "string",
   "description": "e.g. 28AUG26"
  },
  "strike": {
   "type": "number",
   "description": "Strike price"
  },
  "currency": {
   "type": "string",
   "description": "BTC, ETH, or SOL"
  },
  "instrument": {
   "type": "string",
   "description": "Deribit instrument name"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deribit-options-live-quote-0f61dcd7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
