---
title: "Quote"
method: GET
path: "/quote"
tags: ["market_data"]
---

# Quote

`GET /quote`

The quote endpoint provides real-time data for a selected financial instrument, returning essential information such as the latest price, open, high, low, close, volume, and price change. This endpoint is ideal for users needing up-to-date market data to track price movements and trading activity for specific stocks, ETFs, or other securities.

## Query parameters

- `symbol` string
- `figi` string
- `isin` string
- `cusip` string
- `interval` '1min' | '5min' | '15min' | '30min' | '45min' | '1h' | '2h' | '4h' | '8h' | '1day' | '1week' | '1month'
- `exchange` string
- `mic_code` string
- `country` string
- `volume_time_period` integer
- `type` 'American Depositary Receipt' | 'Bond' | 'Bond Fund' | 'Closed-end Fund' | 'Common Stock' | 'Depositary Receipt' | 'Digital Currency' | 'ETF' | 'Exchange-Traded Note' | 'Global Depositary Receipt' | 'Limited Partnership' | 'Mutual Fund' | 'Physical Currency' | 'Preferred Stock' | 'REIT' | 'Right' | 'Structured Product' | 'Trust' | 'Unit' | 'Warrant'
- `format` 'JSON' | 'CSV'
- `delimiter` string
- `prepost` boolean
- `eod` true | false
- `rolling_period` integer
- `dp` integer
- `timezone` string

## Response `200`

- object
  - `symbol` string, required — Symbol passed
  - `name` string, required — Name of the instrument
  - `exchange` string — Exchange where instrument is traded
  - `mic_code` string — Market identifier code (MIC) under ISO 10383 standard. Available for stocks, ETFs, mutual funds, bonds
  - `currency` string — Currency in which the equity is denominated. Available for stocks, ETFs, mutual funds, bonds
  - `datetime` string, required — Datetime in defined timezone referring to when the bar with specified interval was opened
  - `timestamp` integer, required — Unix timestamp representing the opening candle of the specified interval
  - `last_quote_at` integer — Unix timestamp of last minute candle
  - `open` string, required — Price at the opening of current bar
  - `high` string, required — Highest price which occurred during the current bar
  - `low` string, required — Lowest price which occurred during the current bar
  - `close` string, required — Close price at the end of the bar
  - `volume` string — Trading volume during the bar. Available not for all instrument types
  - `previous_close` string, required — Close price at the end of the previous bar
  - `change` string, required — Close - previous_close
  - `percent_change` string, required — (Close - previous_close) / previous_close * 100
  - `average_volume` string — Average volume of the specified period. Available not for all instrument types
  - `rolling_1d_change` string — Percent change in price between the current and the backward one, where period is 1 day. Available for crypto
  - `rolling_7d_change` string — Percent change in price between the current and the backward one, where period is 7 days. Available for crypto
  - `rolling_change` string — Percent change in price between the current and the backward one, where period specified in request param rolling_period. Available for crypto
  - `is_market_open` boolean, required — True if market is open; false if closed
  - `fifty_two_week` object, required — Collection of 52-week metrics
    - `low` string — 52-week low price
    - `high` string — 52-week high price
    - `low_change` string — Current price - 52-week low
    - `high_change` string — Current price - 52-week high
    - `low_change_percent` string — Percentage change from 52-week low
    - `high_change_percent` string — Percentage change from 52-week high
    - `range` string — Range between 52-week low and high
  - `extended_change` string — Diff between the regular close price and the latest extended price. Displayed only if prepost is true
  - `extended_percent_change` string — Percent change in price between the regular close price and the latest extended price. Displayed only if prepost is true
  - `extended_price` string — Latest extended price. Displayed only if prepost is true
  - `extended_timestamp` integer — Unix timestamp of the last extended price. Displayed only if prepost is true

## Other responses

- `400`
- `401`
- `403`
- `404`
- `414`
- `429`
- `500`

---

[API](https://skmtc.net/twelvedata/apis/twelve-data-api.md) · [All operations](https://skmtc.net/twelvedata/apis/twelve-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/twelvedata/twelve-data-api/revisions/c4a12725cdb5/schema)
