---
title: "Get option quote"
method: GET
path: "/accounts/{accountId}/quotes/options"
tags: ["Trading"]
deprecated: true
---

# Get option quote

`GET /accounts/{accountId}/quotes/options`

> **Deprecated.**

Returns a quote for a single option contract. The option contract is specified using in the 21 character OCC format. For example `AAPL  251114C00240000` represents a call option on AAPL expiring on 2025-11-14 with a strike price of $240. For more information on the OCC format, see [here](https://en.wikipedia.org/wiki/Option_symbol#OCC_format)
**Note:** These are derived values and are not suitable for trading purposes.

**This Endpoint is deprecated and will cease to return data as of October 1, 2026**

## Path parameters

- `accountId` string, uuid, required — Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.

## Query parameters

- `userId` string, required — SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
- `userSecret` string, required — SnapTrade User Secret. This is a randomly generated string and should be stored securely. If compromised, please rotate it via the [rotate user secret endpoint](/reference/Authentication/Authentication_resetSnapTradeUserSecret).
- `symbol` string, required

## Response `200`

OK

- OptionQuote — Real-time quote for a single option contract.
  - `symbol` string — The OCC-formatted option symbol.
  - `synthetic_price` number — The derived synthetic price of the contract.
  - `implied_volatility` number — The implied volatility of the option contract.
  - `timestamp` string, date-time, nullable — The timestamp of the last update for the option quote.
  - `greeks` object — The Greeks for the option contract.
    - `delta` number — Delta represents the rate of change between the option's price and a $1 change in the underlying asset's price.
    - `gamma` number — Gamma represents the rate of change between an option's delta and the underlying asset's price.
    - `theta` number — Theta represents the rate of change between the option price and time, or time sensitivity - sometimes known as an option's time decay.
    - `vega` number — Vega represents the rate of change between an option's value and the underlying asset's implied volatility.

## Other responses

- `404` — Option contract not found
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/passiv/apis/snaptrade.md) · [All operations](https://skmtc.net/passiv/apis/snaptrade/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/passiv/snaptrade/revisions/259274f1e845/schema)
