Stock Snapshots
Stock snapshot endpoints provide market-state views for all stocks, one ticker, or directional movers.
Full market snapshot
GET /v1/stocks/snapshot/
curl "https://api.cutemarkets.com/v1/stocks/snapshot/" \
-H "Authorization: Bearer YOUR_API_KEY"
Common query parameters include include_otc, ticker.any_of, and limit where supported by the endpoint.
Ticker snapshot
GET /v1/stocks/snapshot/{ticker}/
curl "https://api.cutemarkets.com/v1/stocks/snapshot/AAPL/" \
-H "Authorization: Bearer YOUR_API_KEY"
The response is a single snapshot object in the standard CuteMarkets envelope.
Movers
GET /v1/stocks/snapshot/movers/{direction}/
direction is gainers or losers.
curl "https://api.cutemarkets.com/v1/stocks/snapshot/movers/gainers/?limit=20" \
-H "Authorization: Bearer YOUR_API_KEY"
Plan behavior
Free and Developer stock subscriptions receive delayed snapshot data. Expert and Commercial stock subscriptions receive live stock data.