---
title: "Previous Close"
method: GET
path: "/v2/aggs/ticker/{optionsTicker}/prev"
tags: ["options:aggregates"]
---

# Previous Close

`GET /v2/aggs/ticker/{optionsTicker}/prev`

Get the previous day's open, high, low, and close (OHLC) for the specified option contract.

## Path parameters

- `optionsTicker` string, required

## Query parameters

- `adjusted` boolean

## Response `200`

The previous day OHLC for the options contract.

- object
  - `ticker` string, required — The exchange symbol that this item is traded under.
  - `adjusted` boolean, required — Whether or not this response was adjusted for splits.
  - `queryCount` integer, required — The number of aggregates (minute or day) used to generate the response.
  - `request_id` string, required — A request id assigned by the server.
  - `resultsCount` integer, required — The total number of results for this request.
  - `status` string, required — The status of this request's response.
  - `results` object[] — An array of results containing the requested data.
    - `c` number, double, required — The close price for the symbol in the given time period.
    - `h` number, double, required — The highest price for the symbol in the given time period.
    - `l` number, double, required — The lowest price for the symbol in the given time period.
    - `n` integer — The number of transactions in the aggregate window.
    - `o` number, double, required — The open price for the symbol in the given time period.
    - `t` integer, required — The Unix millisecond timestamp for the start of the aggregate window.
    - `v` number, double, required — The trading volume of the symbol in the given time period.
    - `vw` number, double — The volume weighted average price.

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