v1
latestOpenAPI 3.1.02026-07-2268276396.6 KBMarket Data
Intraday Prices
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.
post/v1/price/intraday/query
Request body
Example request
{
"identifier": {
"value": "4A6F00"
}
}Response
Successful Response
Example response
{
"results": {
"rp_entity_id": "4A6F00",
"target_identifier_id": "GOOGL",
"fields": [
"TIMESTAMP",
"OPEN",
"LOW",
"HIGH",
"CLOSE",
"VOLUME",
"CURRENCY"
],
"values": [
"2025-09-15T09:30:00",
244.77,
244.66,
252.4,
249.52,
41229669,
"USD"
]
}
}