CuteMarkets Docs

API Reference

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

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

Ticker Search

Search for underlying ticker symbols.

Example Endpoint

/v1/tickers/search/?query=NFLX&limit=8

Endpoint

bash
GET /v1/tickers/search

Example Request

bash
curl \
  "https://api.cutemarkets.com/v1/tickers/search/?query=NFLX&limit=8" \
  -H "Authorization: Bearer YOUR_API_KEY"

Sample Response

bash
{
  "status": "OK",
  "request_id": "cm_7546c8d1ad144068910f4fbf30a01e4f",
  "results": [
    {
      "symbol": "NFLX",
      "name": "NetFlix Inc"
    }
  ]
}

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.