---
title: "Get Options Technical Indicator Data"
method: GET
path: "/options/technicals/{indicator}/{optionsTicker}"
tags: ["Options - Technical Indicators"]
---

# Get Options Technical Indicator Data

`GET /options/technicals/{indicator}/{optionsTicker}`

Retrieves historical technical indicator data (SMA, EMA, MACD, RSI) for a specified options ticker.
Query parameters vary based on the selected indicator.

## Path parameters

- `indicator` 'sma' | 'ema' | 'macd' | 'rsi', required
- `optionsTicker` string, required

## Query parameters

- `timestamp` string
- `timestamp.gt` string
- `timestamp.gte` string
- `timestamp.lt` string
- `timestamp.lte` string
- `timespan` 'minute' | 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year', required
- `adjusted` boolean
- `window` integer
- `series_type` 'open' | 'high' | 'low' | 'close'
- `expand_underlying` boolean
- `short_window` integer
- `long_window` integer
- `signal_window` integer
- `order` 'asc' | 'desc'
- `limit` integer

## Response `200`

Successful response with the calculated technical indicator data. Keys are in kebab-case.

- object
  - `request-id` string
  - `status` string
  - `results` object
    - `underlying` object
      - `aggregates` object[]
      - `url` string
    - `values` object[]
      - `timestamp` integer — Unix millisecond timestamp of the aggregate's start time.
      - `value` number — The calculated indicator value.
      - `histogram` number
      - `signal` number
  - `next-url` string, nullable — URL for the next page of results.

## Other responses

- `400` — Bad Request - Invalid indicator, missing required parameters for the indicator, or invalid values.
- `401` — Unauthorized - API Key issue. (Mapped to 500)
- `404` — Not Found - Ticker not found or no data available for the parameters.
- `429` — Too Many Requests.
- `500` — Internal Server Error.

---

[API](https://skmtc.net/laksmono---company/apis/finbud-api.md) · [All operations](https://skmtc.net/laksmono---company/apis/finbud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/laksmono---company/finbud-api/versions/742d2654c09a/schema)
