---
title: "Quotes"
method: GET
path: "/v3/quotes/{optionsTicker}"
tags: ["options:quotes"]
---

# Quotes

`GET /v3/quotes/{optionsTicker}`

Get quotes for an options ticker symbol in a given time range.

## Path parameters

- `optionsTicker` string, required

## Query parameters

- `timestamp` string
- `timestamp.gte` string
- `timestamp.gt` string
- `timestamp.lte` string
- `timestamp.lt` string
- `order` 'asc' | 'desc'
- `limit` integer
- `sort` 'timestamp'

## Response `200`

A list of quotes.

- object
  - `next_url` string — If present, this value can be used to fetch the next page of data.
  - `request_id` string — A request id assigned by the server.
  - `results` object[] — An array of results containing the requested data.
    - `ask_exchange` integer — The ask exchange ID
    - `ask_price` number, double — The ask price.
    - `ask_size` number, double — The ask size. This represents the number of round lot orders at the given ask price. The normal round lot size is 100 shares. An ask size of 2 means there are 200 shares available to purchase at the given ask price.
    - `bid_exchange` integer — The bid exchange ID
    - `bid_price` number, double — The bid price.
    - `bid_size` number, double — The bid size. This represents the number of round lot orders at the given bid price. The normal round lot size is 100 shares. A bid size of 2 means there are 200 shares for purchase at the given bid price.
    - `sequence_number` integer, required — The sequence number represents the sequence in which quote events happened. These are increasing and unique per ticker symbol, but will not always be sequential (e.g., 1, 2, 6, 9, 10, 11).
    - `sip_timestamp` integer, required — The nanosecond accuracy SIP Unix Timestamp. This is the timestamp of when the SIP received this quote from the exchange which produced it.
  - `status` string, required — The status of this request's response.

---

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