POST
/
v1
/
price
/
intraday
/
query
Query Intraday Prices
curl --request POST \
  --url https://api.bigdata.com/v1/price/intraday/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "identifier": {
    "type": "rp_entity_id",
    "value": "4A6F00"
  },
  "timestamp": {
    "end": "2023-09-01T16:00:00Z",
    "start": "2023-09-01T09:00:00Z"
  },
  "interval": "15min",
  "pagination": {}
}'
{
  "results": {
    "rp_entity_id": "4A6F00",
    "target_identifier_id": "GOOGL",
    "fields": "TIMESTAMP",
    "values": [
      "2025-09-15T09:30:00",
      244.77,
      244.66,
      252.4,
      249.52,
      41229669,
      "USD"
    ]
  },
  "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 intraday price. You must supply one type and its corresponding value. Only one identifier should be provided per request.

timestamp
object | null
required

The time range for retrieving intraday prices. All timestamps 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 timestamp format is 'YYYY-MM-DDTHH:MM:SSZ', for example, '2025-09-02T09:00:00Z'.

Examples:
{
"end": "2023-09-01T16:00:00Z",
"start": "2023-09-01T09:00:00Z"
}
interval
enum<string>
required

The time interval for each intraday price data point. For example, '1min', '5min', '15min', '30min', '1hour', '4hour'.

Available options:
1min,
5min,
15min,
30min,
1hour,
4hour
pagination
object

Pagination parameters for the query.

Response

200 - application/json

Successful Response

Company Intraday Prices response model.

results
object
required

The main data result

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

Common pagination response for endpoints that support pagination.

metadata
object | null