CuteMarkets Docs

API Reference

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

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

Expiration Dates

Retrieve all available expiration dates for an underlying ticker's options contracts.

Example Endpoint

/v1/tickers/expirations/NFLX/

Endpoint

bash
GET /v1/tickers/expirations/{ticker}

Example Request

bash
curl \
  "https://api.cutemarkets.com/v1/tickers/expirations/NFLX/" \
  -H "Authorization: Bearer YOUR_API_KEY"

Sample Response

bash
{
  "status": "OK",
  "request_id": "cm_47aea1ae363e4d649dabde589fa4c3f8",
  "ticker": "NFLX",
  "results": [
    "2026-04-02",
    "2026-04-10",
    "2026-04-17",
    "2026-04-24",
    "2026-05-01",
    "2026-05-08",
    "2026-05-15"
  ]
}

Related calendar guides

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.