v1

latestOpenAPI 3.1.02026-07-2268276396.6 KB
Market Data

Daily Prices

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.

post/v1/price/daily/query

Request body

Example request

{
  "date_range": {
    "start": "2025-01-01",
    "end": "2025-01-20"
  }
}

Response

Successful Response

Example response

{
  "results": [
    {
      "rp_entity_id": "4A6F00",
      "target_identifier_id": "AAPL",
      "fields": [
        "DATE",
        "OPEN",
        "LOW",
        "HIGH",
        "CLOSE",
        "VOLUME",
        "CHANGE",
        "CHANGE_PERCENT",
        "VWAP",
        "CURRENCY"
      ],
      "values": [
        "2025-09-22",
        254.43,
        250.3,
        255.78,
        252.53,
        32255300,
        -1.9,
        -0.74677,
        253.26,
        "USD"
      ]
    }
  ]
}