ThetaData `/v2/snapshot/stock/quote` Endpoint
An endpoint guide for developers comparing ThetaData stock quote snapshots with stock and options data workflows.
ThetaData `/v2/snapshot/stock/quote` is a latest stock bid/ask snapshot endpoint. In CuteMarkets, the closest stock workflow is the stock quotes API; the closest options workflow is usually chain or contract snapshots for current state and historical option quotes when the model needs bid/ask rows over time.
Use case
Latest quote
The workflow needs current bid/ask state.
CuteMarkets stock quote path
Stock quotes API
Use stock quote endpoints for stock bid/ask checks.
CuteMarkets options path
Chain + contract snapshots
Use option snapshots and quote history for options-specific state.
Map the endpoint use case beyond the path
A vendor endpoint name is less important than the job it performs. The stock quote snapshot path points to latest stock quote state. If the job is stock bid/ask review, use stock quotes. If the options job is latest state for one contract, use a contract snapshot. If it is latest state across a chain, use a chain snapshot.
If the job is backtesting or execution simulation, a snapshot is not enough. Use historical quote rows so the model can test bid, ask, spread, and timestamp freshness.
Migration notes for stock quote snapshots
A snapshot endpoint is usually wired into screens that need the latest bid and ask, such as quote panels, watchlists, and pre-trade checks. Those consumers often expect one compact response rather than a paginated history.
Before replacing the endpoint, list the fields the application reads today: bid price, ask price, sizes, exchange or venue fields, timestamp, and any condition codes. The safer migration is to match those fields first, then decide whether the surrounding workflow also needs quote history or an options snapshot.
Endpoint use-case mapping
| Need | CuteMarkets page | Why |
|---|---|---|
| Latest stock bid/ask state | Stock quotes API | Checks stock quote history and last quote records for spread-aware workflows. |
| Latest one-contract quote state | Contract snapshot API | Combines latest quote, trade, Greeks, IV, and day stats. |
| Latest full-chain state | Options chain API | Scans many contracts in one underlying and expiration workflow. |
| Historical bid/ask data | Historical options quotes API | Supports backtests and spread analysis. |
API example
Verify the answer with listed data
stock quote endpoint
curl "https://api.cutemarkets.com/v1/stocks/quotes/AAPL/last/" \
-H "Authorization: Bearer YOUR_API_KEY"contract snapshot alternative
curl "https://api.cutemarkets.com/v1/options/snapshot/SPY/O:SPY260515C00500000/" \
-H "Authorization: Bearer YOUR_API_KEY"Last verified
This guide was last reviewed on May 7, 2026. Date-sensitive market calendars, provider docs, and listed contracts can change, so production workflows should verify the live source before trading or publishing an automated answer.
Related questions
Is this a one-to-one endpoint replacement?
No. Compare the workflow requirement, fields, timestamps, and licensing before migrating.
What if I need historical quotes?
Use the CuteMarkets historical options quotes endpoint rather than a latest snapshot endpoint.
What if I need stock quotes?
Use CuteMarkets stock quote endpoints with an Expert or Commercial stock subscription. Stock plans are separate from options plans.
Related pages
Stock quotes API
Use stock quote history and last quote records for bid/ask checks.
Stock quote snapshot comparison
Compare the endpoint use case against CuteMarkets stock quote and options workflows.
ThetaData options API comparison
Compare ThetaData and CuteMarkets across broader options data workflows.
Options Q&A hub
Browse focused guides for expirations, OCC symbols, options data, and provider comparisons.
Evaluation framework
Use a practical framework for testing provider claims against endpoint coverage and workflow fit.
Compare providers
Compare CuteMarkets against provider alternatives for API-first options workflows.
Best options data APIs
Review criteria for choosing an options data provider.
Pricing
Check CuteMarkets plans and API access levels.