# Agent402 Options Ticker

> Agent402 Options Ticker is a paid API for AI agents from agent402.tools, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches a live options ticker from Deribit including bid/ask IV, Greeks, mark price, and 24h stats for a specified crypto options instrument

## Facts

- Endpoint: POST https://agent402.tools/api/options-ticker
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-options-ticker-292c48b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1-MtanAiFQOG1qLzBqCfB

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 agent402-options-ticker-292c48b9 -d '<json body>'
```

Example prompt: Pull the live Deribit options ticker for the nearest-expiry at-the-money BTC call, including the Greeks, implied volatility, and 24h stats.

## When to prefer this

Use this endpoint when you need real-time, granular options data from Deribit — specifically Greeks, implied volatility surfaces, and live bid/ask — rather than simple spot prices. Prefer this over generic crypto price feeds when options analytics (delta hedging, IV monitoring, vega exposure) are required. Best for agents operating in crypto derivatives, options market-making, or risk management contexts.

## Known failure modes

- Invalid or expired instrument name returns an error — use a valid Deribit instrument like BTC-PERPETUAL or ETH-27MAR26-3000-P
- Unsupported currency (not BTC or ETH) may fail or return unexpected results
- If the option has expired or is not tradeable, the state field may reflect 'closed' or the endpoint may return an error
- Network or Deribit API downtime may cause fetch failures
- Ambiguous combination of currency and type may not resolve to a unique instrument

## How this service works

One options instrument live: mark, last, bid and ask with sizes, index price, open interest, mark, bid and ask implied volatility and the full greeks (delta, gamma, vega, theta, rho). Use it when an agent holds or is quoting a specific contract and needs its current risk numbers.

## Output

Returns a JSON object with the Deribit source, resolved instrument name, fetchedAt timestamp, and a full ticker object containing: ask/bid/mark implied volatility, best bid/ask prices, last price, mark price, 24h low/high/volume/volume-USD/price-change-pct, Greeks (delta, gamma, theta, vega, rho), open interest, underlying index and price, and index price.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string",
   "description": "With currency: call (default) or put."
  },
  "currency": {
   "type": "string",
   "description": "Alternative to instrument: BTC or ETH picks the nearest-expiry at-the-money option."
  },
  "instrument": {
   "type": "string",
   "description": "Deribit instrument name, e.g. BTC-PERPETUAL or ETH-27MAR26-3000-P."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "deribit",
  "ticker": {
   "askIv": 48.9,
   "bidIv": 46.1,
   "state": "open",
   "stats": {
    "low24h": 0.011,
    "high24h": 0.013,
    "volume24h": 120.5,
    "volume24hUsd": 112000,
    "priceChange24hPct": -4.2
   },
   "greeks": {
    "rho": 2.1,
    "vega": 30.1,
    "delta": 0.52,
    "gamma": 0.00012,
    "theta": -190.2
   },
   "markIv": 47.5,
   "bestAsk": 0.0125,
   "bestBid": 0.0115,
   "lastPrice": 0.012,
   "markPrice": 0.0121,
   "timestamp": "2026-08-22T12:00:00.000Z",
   "indexPrice": 77242.3,
   "instrument": "BTC-26AUG26-77000-C",
   "openInterest": 85.2,
   "underlyingIndex": "BTC-26AUG26",
   "underlyingPrice": 77317.9
  },
  "fetchedAt": "2026-08-22T12:00:00.000Z",
  "resolvedFrom": "nearest-expiry-atm"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-options-ticker-292c48b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
