HomeBlogStocks Data API Is Live in CuteMarkets
Product UpdateMay 7, 2026·5 min read

Stocks Data API Is Live in CuteMarkets

CuteMarkets

CuteMarkets Team

Product

Quick answer

Stocks Data API Is Live in CuteMarkets

CuteMarkets stock REST data is live now. Stocks are a separate subscription product with Free, Developer, Expert, and Commercial plans; Developer is 15-minute delayed and Expert adds live data plus stock quote endpoints.

Stocks Data API Is Live in CuteMarkets

Stocks Data API Is Live in CuteMarkets

CuteMarkets now supports stock REST data alongside the existing options API. The launch adds stock snapshots, movers, ticker reference, trades, quotes, aggregates, grouped bars, open-close records, and technical indicators under the /v1/stocks/ namespace.

Stocks launch as a separate subscription product, not as an automatic bundle with options. You can manage options, stocks, or both from the same CuteMarkets account, and each product keeps its own plan state.

What is live now

The new stock REST endpoints cover the core market-data workflow:

  • full market snapshots, ticker snapshots, and movers
  • ticker list, ticker types, ticker details, and related tickers
  • historical stock trades and last trade
  • historical stock quotes and last quote
  • grouped bars, previous day bars, custom OHLC bars, and open-close records
  • SMA, EMA, MACD, and RSI indicators

All endpoints use the same CuteMarkets response envelope with status, request_id, results, and next_url when pagination is available. The signed page cursor flow is the same one used on options endpoints.

Separate stock subscriptions

Stocks use the same plan ladder as options:

  • Free: EUR 0, 10 requests per minute, 5,000 requests per day, 15-minute delayed data, 3-year lookback, no quotes
  • Developer: EUR 49/month with yearly billing or EUR 59/month with monthly billing, unlimited requests, 15-minute delayed data, 7-year lookback, no quotes
  • Expert: EUR 99/month with yearly billing or EUR 119/month with monthly billing, unlimited requests, live data, 10-year lookback, quote endpoints
  • Commercial: EUR 399/month with yearly billing or EUR 469/month with monthly billing, Expert access plus commercial application allowance

Plan access is product-specific. A Developer options plan does not automatically unlock Developer stock access. A stock Expert plan unlocks stock quotes, not options quotes. The dashboard now treats them as separate subscriptions so teams can buy only what they need.

Quick example

curl "https://api.cutemarkets.com/v1/stocks/snapshot/AAPL/" \
  -H "Authorization: Bearer YOUR_API_KEY"

For historical bars:

curl "https://api.cutemarkets.com/v1/stocks/aggs/AAPL/5/minute/2026-05-01/2026-05-06/?adjusted=true&limit=5000" \
  -H "Authorization: Bearer YOUR_API_KEY"

For quote-aware stock workflows, use Expert or Commercial:

curl "https://api.cutemarkets.com/v1/stocks/quotes/AAPL/?timestamp.gte=2026-05-06T13:30:00Z&limit=1000" \
  -H "Authorization: Bearer YOUR_API_KEY"

Why this matters

Options research rarely lives alone. Stock bars, stock prints, movers, and ticker reference data are the context layer around many options workflows. With stock data now available, CuteMarkets users can keep the account, API key, authentication header, error envelope, and pagination model stable while adding the underlying equity data they need.

Integrated paper trading is next on the roadmap. This launch gives you the market-data layer: stock REST endpoints, separate stock subscriptions, and dashboard controls for managing options and stocks independently.

Start with the Stocks Data API, read the stock REST docs, or compare plans on pricing.

FAQ

Related questions

Does CuteMarkets now have a stocks data API?

Yes. CuteMarkets now supports stock snapshots, movers, ticker reference, trades, quotes, aggregates, open-close records, and technical indicators under `/v1/stocks/`.

Are stocks included with an options subscription?

No. Stocks and options are separate subscriptions. They share the same CuteMarkets account, but each product has its own plan tier and product-scoped API keys.