---
title: "Daily Open/Close"
method: GET
path: "/v1/open-close/{optionsTicker}/{date}"
tags: ["options:open-close"]
---

# Daily Open/Close

`GET /v1/open-close/{optionsTicker}/{date}`

Get the open, close and afterhours prices of an options contract on a certain date.

## Path parameters

- `optionsTicker` string, required
- `date` string, date, required

## Query parameters

- `adjusted` boolean

## Response `200`

The open/close of this stock symbol.

- object
  - `afterHours` number, double — The close price of the ticker symbol in after hours trading.
  - `close` number, double, required — The close price for the symbol in the given time period.
  - `from` string, date, required — The requested date.
  - `high` number, double, required — The highest price for the symbol in the given time period.
  - `low` number, double, required — The lowest price for the symbol in the given time period.
  - `open` number, double, required — The open price for the symbol in the given time period.
  - `otc` boolean — Whether or not this aggregate is for an OTC ticker. This field will be left off if false.
  - `preMarket` integer — The open price of the ticker symbol in pre-market trading.
  - `status` string, required — The status of this request's response.
  - `symbol` string, required — The exchange symbol that this item is traded under.
  - `volume` number, double, required — The trading volume of the symbol in the given time period.

## Other responses

- `default` — Unexpected error

---

[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)
