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

# Daily Open/Close

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

Get the open, close and afterhours values of a index symbol on a certain date.

## Path parameters

- `indicesTicker` string, required
- `date` string, required

## Response `200`

The open/close of this stock symbol.

- object
  - `afterHours` number, double — The close value of the ticker symbol in after hours trading.
  - `close` number, double, required — The close value for the symbol in the given time period.
  - `from` string, date, required — The requested date.
  - `high` number, double, required — The highest value for the symbol in the given time period.
  - `low` number, double, required — The lowest value for the symbol in the given time period.
  - `open` number, double, required — The open value for the symbol in the given time period.
  - `preMarket` integer — The open value 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.

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