---
title: "Get Technical Indicator Data"
method: GET
path: "/technicals/{indicator}/{symbol}/{interval}"
tags: ["Technicals"]
---

# Get Technical Indicator Data

`GET /technicals/{indicator}/{symbol}/{interval}`

Fetches historical technical indicator data for a specific stock symbol, indicator type, and time interval. Supports various indicators like SMA, EMA, WMA, DEMA, TEMA, Williams %R, RSI, ADX, and Standard Deviation. Specific required parameters depend on the chosen indicator (e.g., 'period' is required for most).

## Path parameters

- `indicator` 'sma' | 'ema' | 'wma' | 'dema' | 'tema' | 'williams' | 'rsi' | 'adx' | 'standard-deviation', required
- `symbol` string, required
- `interval` '1min' | '5min' | '15min' | '30min' | '1hour' | '4hour' | 'daily', required

## Query parameters

- `period` integer, required
- `from` string, date
- `to` string, date

## Response `200`

Successful response with an array of technical indicator data points.

- object[]
  - `date` string, date-time
  - `open` number
  - `high` number
  - `low` number
  - `close` number
  - `volume` number
  - `sma` number
  - `rsi` number

## Other responses

- `400` — Bad Request - Missing or invalid parameters (symbol, indicator, interval, period), or invalid date format.
- `404` — Not Found - No data found for the requested symbol/indicator/interval/period.
- `500` — Internal Server Error - Failed to fetch data or other 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/revisions/742d2654c09a/schema)
