CuteMarkets Docs

API Reference

Everything you need to integrate market data, build faster, and scale.

Tip: open /docs/stock-snapshots.md directly for raw markdown (easy copy/paste into an LLM).

Stock Snapshots

Stock snapshot endpoints provide market-state views for all stocks, one ticker, or directional movers.

Full market snapshot

bash
GET /v1/stocks/snapshot/
bash
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

bash
GET /v1/stocks/snapshot/{ticker}/
bash
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

bash
GET /v1/stocks/snapshot/movers/{direction}/

direction is gainers or losers.

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

Next steps

Move from the docs into the product workflow

If you are evaluating the API rather than implementing a specific endpoint right now, the product pages map the live, historical, and chain workflows directly.