CuteMarkets Docs

API Reference

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

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

Market-data freshness is a product feature, a compliance concern, and an engineering variable. A delayed quote can be useful for education or research, but it should never be labeled as live data in a UI, alert, stream, or backtest artifact.

Use this guide when choosing a plan, designing logs, or explaining why the same endpoint family can behave differently across API keys.

Quick answer

CuteMarkets separates Stocks API and Options API subscriptions. Free and Developer plans are delayed. Expert and Commercial plans include live data, quote endpoints, and WebSocket streams for the subscribed product. Applications need to display and log whether data is live, delayed, or historical, and plan access needs to be treated as part of the data contract.

Freshness categories

CategoryWhat it meansTypical use
LiveCurrent market-data access under the subscribed product and plan.Production dashboards, scanners, alerts, and streaming workflows.
DelayedMarket data intentionally lagged by the plan or entitlement.Evaluation, education, delayed dashboards, and non-live research.
HistoricalRows requested for a past timestamp window.Backfills, event studies, research, and backtests.
CachedPreviously retrieved data stored by the application.Fast UI loads, replay, and reproducible research artifacts.

The same screen can contain several categories. A current stock snapshot, an option chain snapshot, and a historical option quote window may all be visible together. Label them separately.

Product entitlement boundaries

Stocks and options are separate products. A Stocks API key does not imply Options API access, and an Options API key does not imply Stocks API access. Quote endpoints and WebSocket streams are also plan-sensitive.

When an integration fails, check entitlement before debugging data availability:

  1. Is the API key active?
  2. Is the key subscribed to the correct product?
  3. Does the selected plan include quotes?
  4. Does the selected plan include live data or only delayed data?
  5. Does the selected plan include WebSocket access?
  6. Is the requested timestamp inside the plan lookback?

UI and log design

User-facing interfaces need visible freshness. If a quote is delayed, say delayed. If a value is historical, say historical. If a row comes from a backfilled cache, keep the source request and timestamp bounds in an audit log.

For logs, store:

FieldWhy
productStocks or options.
planExplains available endpoints and freshness.
endpointQuotes, trades, snapshots, bars, or reference.
request_timestampWhen the application asked.
row_timestampWhen the market-data row occurred.
freshnessLive, delayed, historical, or cached.
delay_minutesUseful when returned by the API.
request_idSupport and reproducibility.

Backtesting implications

Backtests are historical by design, but entitlement still matters because quote availability, lookback, and endpoint access shape what data can be retrieved. Do not let a backtest silently switch from quotes to last trades because the key lacks quote access. The run should fail, skip, or label itself as a lower-fidelity variant.

If a research run mixes cached historical data with new pulls, record cache version, endpoint, timestamp bounds, and any plan assumptions. That makes the result debuggable when a future replay produces different coverage.

Official references

Related CuteMarkets docs

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 live and historical workflows for stocks, options, and WebSockets.