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

# Intraday Prices

`POST /v1/price/intraday/query`

Returns intraday historical price and volume data for a given symbol at specified intervals (e.g. 1min, 5min, 15min, 30min, 1hour). Supports stocks, ETFs, commodities (continuous futures), indexes, cryptocurrencies, and forex pairs. Each data point includes timestamp, open, high, low, close, and volume.

## Request body

- IntradayPricesQuery
  - `identifier` SingleIdentifier, required
    - `type` 'rp_entity_id', required
    - `value` string, 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`)
  - `timestamp` QueryTimestamp, required
    - `start` string, date-time, nullable — The start datetime of the time range for retrieving events. Only events occurring on or after this datetime will be included. The expected timestamp format is 'YYYY-MM-DD', for example, '2025-09-02'
    - `end` string, date-time, nullable — The end datetime of the time range for retrieving events. Only events occurring on or before this datetime will be included. The expected timestamp format is 'YYYY-MM-DD', for example, '2025-09-03'.
  - `interval` '1min' | '5min' | '15min' | '30min' | '1hour' | '4hour', required

## Response `200`

Successful Response

- IntradayPricesResponse — Company Intraday Prices response model.
  - `results` IntradayPricesResults, required — Alternative result model with strongly typed records.
    - `rp_entity_id` string, nullable, required — RP Entity identifier
    - `target_identifier_id` string, nullable, required — The external identifier ID, such as a symbol
    - `fields` string[], required — Column names for the data values
    - `values` IntradayPricesValue[], required — Intraday 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)
