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

# Get Options Quotes

`GET /options/quotes/{optionsTicker}`

Retrieves historical quotes (NBBO - National Best Bid and Offer) for a specified options contract over a defined time range.
Includes bid/ask prices, sizes, exchange IDs, and timestamps. Max 50,000 results per request.

## Path parameters

- `optionsTicker` string, required

## Query parameters

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

## Response `200`

Successful response with options quote data. Keys are in kebab-case.

- object
  - `request-id` string
  - `status` string
  - `results` object[]
    - `ask-exchange` integer — Ask exchange ID.
    - `ask-price` number — Ask price.
    - `ask-size` number — Ask size (number of contracts).
    - `bid-exchange` integer — Bid exchange ID.
    - `bid-price` number — Bid price.
    - `bid-size` number — Bid size (number of contracts).
    - `sequence-number` integer — Sequence number of the quote event.
    - `sip-timestamp` integer — SIP Unix Timestamp (nanoseconds).
  - `next-url` string, nullable — URL for the next page of results.

## Other responses

- `400` — Bad Request - Invalid parameters.
- `401` — Unauthorized - API Key issue. (Mapped to 500)
- `404` — Not Found - Ticker not found.
- `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)
