The option chain for a stock, 15-minute delayed. Ask for the listed expirations, the calls-and-puts chain for one expiration (strike, greeks, implied volatility, open interest and the latest daily price), or a single contract by its OCC symbol. Bid and ask are shown only when your plan entitles live quotes; otherwise the last daily price and greeks stand in.

## GetOptionExpirations

The listed expiration dates for a stock, ascending, with the number of contracts at each. Use one as the `expiration` for the chain.

**Parameters:** `ticker` (required — e.g. `NVDA`).

**Ask:** *"What option expirations are listed for NVDA?"*

**Returns:**

```
NVDA option expirations:

| Expiration | Contracts |
|-----------|-----------|
| 2026-07-24 | 168 |
| 2026-08-21 | 208 |
| 2026-09-18 | 154 |
| 2026-12-18 | 494 |
| 2027-01-15 | 154 |
```

## GetOptionChain

The calls-and-puts chain for one expiration: strike, type, last daily price, implied volatility, open interest and greeks (delta, gamma, theta, vega). Defaults to the nearest upcoming expiration; narrow with `minStrike`/`maxStrike`, `type`, and `maxResults` so the answer stays focused (a full chain can run to hundreds of contracts).

**Parameters:** `ticker` (required); `expiration` (`yyyy-MM-dd`, default nearest upcoming); `minStrike` / `maxStrike`; `type` (`call` / `put`); `maxResults` (default 60).

**Ask:** *"Show NVDA calls and puts near the money for the September 18 2026 expiry."*

**Returns** (trimmed):

```
NVDA options expiring 2026-09-18 (15-min delayed):

| Strike | Type | Last | IV | Delta | Gamma | Theta | Vega | Volume | OI |
|-------|------|------|----|-------|-------|-------|------|--------|----|
| 205.00 | Call | 15.25 | 43.5 % | 0.568 | 0.0113 | -0.135 | 0.318 | 57 | 18,423 |
| 205.00 | Put | 12.78 | 44.3 % | -0.435 | 0.0112 | -0.119 | 0.318 | 73 | 10,877 |
| 210.00 | Call | 12.80 | 43.1 % | 0.512 | 0.0115 | -0.134 | 0.323 | 285 | 59,701 |
| 210.00 | Put | 15.25 | 42.6 % | -0.492 | 0.0118 | -0.115 | 0.323 | 8 | 26,559 |
```

## GetOptionContract

A single option contract by its OCC symbol: last daily price and range, implied volatility, open interest, greeks, and bid/ask when your plan entitles quotes. The contract is fetched live from the provider.

**Parameters:** `ticker` (required); `contract` (required — the OCC option symbol, e.g. `O:NVDA260918C00210000`).

**Ask:** *"Give me the full snapshot for option contract O:NVDA260918C00210000."*

**Returns:**

```
**O:NVDA260918C00210000** — NVDA Call $210.00 expiring 2026-09-18 (American)
- Last (day close): 12.80  |  Day range: 12.35–13.90  |  Volume: 285
- Implied volatility: 43.1 %  |  Open interest: 59,701
- Greeks — delta 0.512, gamma 0.0115, theta -0.134, vega 0.323
_15-minute delayed._
```