POST
/
v1
/
price
/
daily
/
query
Daily Prices
curl --request POST \
  --url https://api.bigdata.com/v1/price/daily/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "identifier": {
    "type": "rp_entity_id",
    "value": "4A6F00"
  },
  "date_range": {
    "end": "2023-09-05",
    "start": "2023-09-01"
  }
}'
{
  "results": [
    {
      "rp_entity_id": "4A6F00",
      "target_identifier_id": "AAPL",
      "fields": [
        "DATE",
        "OPEN",
        "LOW",
        "HIGH",
        "CLOSE",
        "VOLUME",
        "CHANGE",
        "CHANGE_PERCENT",
        "VWAP"
      ],
      "values": [
        "2025-09-22",
        254.43,
        250.3,
        255.78,
        252.53,
        32255300,
        -1.9,
        -0.74677,
        253.26
      ]
    }
  ],
  "errors": [
    {
      "message": "<string>"
    }
  ],
  "pagination": {
    "cursor": "00000DexaRK4NT6t",
    "has_cursor": true
  },
  "metadata": {
    "request_id": "<string>",
    "timestamp": "<string>"
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
identifier
object
required

Object specifying which identifier you are using to request the daily price. You must supply one type and its corresponding value. Only one identifier should be provided per request.

date_range
object | null
required

The date range for retrieving daily prices. All dates must be provided in the local time zone of the security exchange, and all results are returned in that same local exchange time. The expected date format is 'YYYY-MM-DD', for example, '2025-09-02'.

Examples:
{
"end": "2023-09-05",
"start": "2023-09-01"
}

Response

200 - application/json

Successful Response

Company Daily Prices response model.

results
DailyPricesResults · object[]
required

The main data result

errors
ErrorDetail · object[] | null
pagination
object | null

Common pagination response for endpoints that support pagination.

metadata
object | null