# BlockRun Options Market Data

> BlockRun Options Market Data is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.0085/call, status unknown (last checked 2026-09-14).

Returns options market data including implied volatility (IV), skew, and volume for a given symbol

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/surf/market/options
- Price: $0.0085/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-options-market-data-afd72ac5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E5uNtfQ4Ab3h8GU-S3GI4

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 blockrun-options-market-data-afd72ac5
```

Example prompt: What are the current options market metrics — implied volatility, skew, and volume — for BTC right now?

## When to prefer this

Use this endpoint when you need crypto options market analytics — particularly IV, skew, and volume — for a specific token symbol without needing a full-service brokerage API key. Ideal for agents doing derivatives-aware market analysis or sentiment inference from options flow.

## Known failure modes

- Missing or invalid symbol parameter returns 400 error
- Symbol not supported or no options market exists for it returns empty or 404
- Payment not settled returns 402 Payment Required
- Rate limit exceeded returns 429
- Stale data if underlying data provider is lagging

## How this service works

Pay for the outcome. One endpoint for every model, tool and data source an agent needs — each call priced before it runs, at the best value per dollar. 103 models and 100 data and tool APIs.

## Output

Returns options market data for the requested symbol, including implied volatility (IV), skew, and volume figures that can be used to assess market sentiment and derivatives pricing.

## Example request

```json
{
 "symbol": "BTC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Required query param"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-options-market-data-afd72ac5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
