---
title: "Price OHLCV"
method: GET
path: "/alt/market-data/price-ohlcv"
tags: ["Alt Market Data"]
---

# Price OHLCV

`GET /alt/market-data/price-ohlcv`

This endpoint returns metrics related to Alt Token's Index Price.  

Price OHLCV data consists of five metrics. 
`open`, the opening price at the beginning of the window, `close`, USD closing price at the end of the window, 
`high`, the highest USD price in a given window, `low`, the lowest USD price in a given window, 
and `volume`, the total token volume traded in a given window.  

At this endpoint, metrics are calculated by Minute, Hour and Day. 

Alt Token Index Price is calculated by taking VWAP(Volume Weighted Average Price) of Alt Token price data aggregated from global exchanges.

## Query parameters

- `token` string, required
- `window` string
- `from` string
- `to` string
- `limit` integer
- `format` string

## Response `200`

Price OHLCV Data

- object
  - `status` object, required — The status object is return with most of requests and indicates if the request was successful. If it is not successful, error information is included.
    - `code` integer, required — HTTP status code
    - `message` string, required — Text description of the error or success.
  - `result` object, required
    - `window` string, required — The size of window. It can be day, hour, or min and it depends on the user request.
    - `data` object[], required
      - `date` string — The date in YYYY-DD-MM. This optional field only appears when window=day is used.
      - `datetime` string — The date and time formatted as YYYY-MM-DDTHH:MM:SS (UTC time). This field only appears when window=block or window=min is used.
      - `open` number, required — The opening price at the beginning of the window.
      - `high` number, required — The highest price in the given window.
      - `low` number, required — The lowest price in the given window.
      - `close` number, required — The closing price at the end of the window.
      - `volume` number, required — The total traded amount in the given window.

---

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