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.
Path parameters
Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
Query parameters
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.
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.
The OCC-formatted option symbol.
Response
OK
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
}
}