v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-0175184292.5 KB
Trading

Get option quote

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 Note: These are derived values and are not suitable for trading purposes.

get/accounts/{accountId}/quotes/options

Path parameters

accountIdstring uuid required

Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.

Example:917c8734-8470-4a3e-a18f-57c3f2ee6631

Query parameters

userIdstring 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.

Example:snaptrade-user-123
userSecretstring 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.

Example:adf2aa34-8219-40f7-a6b3-60156985cc61
symbolstring required
Example:AAPL 251219C00150000

The OCC-formatted option symbol.

Response

OK

symbolstring

The OCC-formatted option symbol.

synthetic_pricenumber

The derived synthetic price of the contract.

implied_volatilitynumber

The implied volatility of the option contract.

timestampstring date-time nullable

The timestamp of the last update for the option quote.

Example response

{
  "symbol": "AAPL  251219C00150000",
  "synthetic_price": 150.25,
  "implied_volatility": 0.32145678,
  "timestamp": "2026-01-15T14:30:00Z",
  "greeks": {
    "delta": 0.5,
    "gamma": 0.1,
    "theta": -0.05,
    "vega": 0.2
  }
}