# finance.toon.haus Options Chain

> finance.toon.haus Options Chain is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns options chain data including implied volatility (IV), volume, and open interest (OI) for a given stock ticker

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/options
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-7f929e2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qnAuK-ARDzRhMQiYVJNtN

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 finance-toon-haus-7f929e2f
```

Example prompt: Pull up the full options chain for TSLA — I want to see the implied volatility, volume, and open interest across all strikes and expirations.

## When to prefer this

Use this endpoint when you need structured options chain data including IV, volume, and OI for a specific stock — ideal for options traders, volatility analysis, or scanning for unusual options activity. Prefer this over general market data endpoints when derivatives data is specifically required.

## Known failure modes

- Invalid or unknown ticker symbol returns empty or error response
- Ticker has no listed options (e.g. OTC stocks) returns no data
- Market closed or data delay may cause stale IV/volume figures
- Rate limiting or payment failure returns 402 or 429 error
- Network timeout for tickers with very large options chains

## How this service works

Options chain with IV, volume, OI

## Output

Returns a structured options chain for the requested stock, including calls and puts organized by expiration date and strike price, with implied volatility (IV), volume, and open interest (OI) for each contract.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toon-haus-7f929e2f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
