Competitor And Migration Q&A

What Is the ThetaData `/snapshot/stock/trade` Endpoint?

A practical comparison of latest trade intent versus historical trade and quote workflows.

Quick answerLast verified April 28, 2026

The ThetaData `/snapshot/stock/trade` query usually points to latest trade state. In CuteMarkets options workflows, latest trade appears in contract and chain snapshots, while the options trades endpoint provides historical executed prints for a contract over time.

Intent

Latest trade

A last sale or most recent print lookup.

CuteMarkets snapshot

Latest trade field

Available inside contract and chain snapshot workflows.

CuteMarkets history

Trades API

Use for executed print history.

Latest trade is not the same as executable price

A latest trade snapshot can show the most recent print, but an options backtest should not assume that print was still executable later.

For execution-aware research, pair trade history with quote history. The trade tells you what printed; the quote tells you what market was available.

Trade workflow mapping

NeedCuteMarkets endpointUse case
Latest trade in current stateContract snapshotContract detail pages and dashboards.
Executed print historyOptions trades APIActivity analysis and tape context.
Execution realismOptions quotes APIBid/ask fill checks.

API example

Verify the answer with listed data

options trades

curl "https://api.cutemarkets.com/v1/options/trades/O:SPY260515C00500000/?limit=100" \
  -H "Authorization: Bearer YOUR_API_KEY"

Last verified

This Q&A page was last reviewed on April 28, 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

Can latest trade replace quotes?

No. Latest trade is an execution print; quotes show bid/ask market context.

Where does CuteMarkets expose latest trade?

Latest trade context is available in snapshot workflows and full trade history is available through the trades endpoint.

What should I compare before migrating?

Compare timestamp precision, conditions, exchange fields, pagination, history depth, and quote availability.

Related pages