---
title: "Current price"
method: GET
path: "/api/v2/quotes/{symbol}/price"
tags: ["Finance"]
---

# Current price

`GET /api/v2/quotes/{symbol}/price`

## Path parameters

- `symbol` string, required — Security ticker symbol.

## Response `200`

Current quote for the symbol with price, change, volume, and session state.

- EnvelopePriceResponseV2
  - `data` PriceResponseV2, required
    - `symbol` string, nullable — Security ticker symbol.
    - `shortName` string, nullable — Short display name.
    - `longName` string, nullable — Full legal / long display name.
    - `currency` string, nullable — Currency code (ISO 4217).
    - `exchange` string, nullable — Exchange code.
    - `exchangeTimezoneName` string, nullable — IANA timezone of the listing exchange.
    - `quoteType` string, nullable — Quote type (EQUITY, ETF, MUTUALFUND, FUTURE, CURRENCY, CRYPTOCURRENCY).
    - `marketState` string, nullable — Market state (REGULAR, PRE, POST, CLOSED).
    - `regularMarketPrice` number, nullable — Current regular market session price.
    - `regularMarketChange` number, nullable — Regular session absolute price change.
    - `regularMarketChangePercent` number, nullable — Regular session percent price change.
    - `regularMarketVolume` integer, nullable — Regular market session trading volume.
    - `regularMarketOpen` number, nullable — Regular market session open price.
    - `regularMarketDayHigh` number, nullable — Regular market session day high.
    - `regularMarketDayLow` number, nullable — Regular market session day low.
    - `regularMarketPreviousClose` number, nullable — Previous session's closing price.
    - `bid` number, nullable — Best bid price.
    - `ask` number, nullable — Best ask price.
    - `marketCap` integer, nullable — Market capitalisation (USD).
    - `fiftyDayAverage` number, nullable — 50-day moving average.
    - `fiftyTwoWeekHigh` number, nullable — 52-week high price.
    - `fiftyTwoWeekLow` number, nullable — 52-week low price.
    - `twoHundredDayAverage` number, nullable — 200-day moving average.
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

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