CuteMarkets Docs

API Reference

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

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

Stock Reference

Ticker reference endpoints help discover stock tickers, ticker types, company details, and related tickers.

List tickers

bash
GET /v1/stocks/tickers/
bash
curl "https://api.cutemarkets.com/v1/stocks/tickers/?market=stocks&active=true&limit=100" \
  -H "Authorization: Bearer YOUR_API_KEY"

The ticker list is paginated. If next_url is present, request it as-is.

Ticker types

bash
GET /v1/stocks/tickers/types/
bash
curl "https://api.cutemarkets.com/v1/stocks/tickers/types/" \
  -H "Authorization: Bearer YOUR_API_KEY"

Ticker detail

bash
GET /v1/stocks/tickers/{ticker}/
bash
curl "https://api.cutemarkets.com/v1/stocks/tickers/AAPL/?date=2026-05-06" \
  -H "Authorization: Bearer YOUR_API_KEY"

Related tickers

bash
GET /v1/stocks/tickers/{ticker}/related/
bash
curl "https://api.cutemarkets.com/v1/stocks/tickers/AAPL/related/" \
  -H "Authorization: Bearer YOUR_API_KEY"

Limits

Ticker reference endpoints default to limit=100 and clamp to limit=1000.

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.