---
title: "Daily Prices"
method: POST
path: "/v1/price/daily/query"
tags: ["Market Data"]
---

# Daily Prices

`POST /v1/price/daily/query`

Returns daily historical price and volume data for a given symbol. Supports
stocks, ETFs, indexes, cryptocurrencies, commodities (continuous futures) and forex pairs. Each
data point includes date, open, high, low, close, volume, change, change percentage,
and volume-weighted average price (VWAP). Ideal for tracking daily market performance
and conducting technical analysis over extended periods.

## Request body

- DailyPricesQuery
  - `identifier` Identifier, required
    - `type` 'rp_entity_id', required
    - `value` union, required — Bigdata uses the RavenPack Entity identifier (RP_Entity_ID) to uniquely reference entities such as companies. This identifier is a 6-character alphanumeric code (letters and numbers only). Example: Alphabet Inc. (`4A6F00`)
      - string
      - string[]
  - `date_range` QueryDateRange, required
    - `start` string, date, nullable — The start date of the time range for retrieving daily prices. Only prices occurring on or after this date will be included. The expected date format is 'YYYY-MM-DD', for example, '2025-09-02'
    - `end` string, date, nullable — The end date of the time range for retrieving daily prices. Only prices occurring on or before this date will be included. The expected date format is 'YYYY-MM-DD', for example, '2025-09-03'.

## Response `200`

Successful Response

- DailyPricesResponse — Company Daily Prices response model.
  - `results` DailyPricesResults[], required — The main data result
    - `rp_entity_id` string, nullable, required — RavenPack internal entity identifier.
    - `target_identifier_id` string, nullable, required — The target identifier provided in the request, e.g., stock symbol.
    - `fields` string[], required — Column names for the data values
    - `values` DailyPricesValue[], required — Daily Prices records
      - unknown[] — Represents one row of values as a tuple (or list).
        - unknown
  - `errors` ErrorDetail[], nullable
    - `message` string, nullable
  - `metadata` Metadata
    - `request_id` string, required
    - `timestamp` string

---

[API](https://skmtc.dev/bigdata/apis/bigdata-structured-data-api.md) · [All operations](https://skmtc.dev/bigdata/apis/bigdata-structured-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bigdata/bigdata-structured-data-api/revisions/18082de268c4/schema)
