Intraday Time Series

GET {{baseUrl}}/query?function=TIME_SERIES_INTRADAY&symbol=<string>&interval=<string>&outputsize=<string>&datatype=<string>

This API returns intraday time series (timestamp, open, high, low, close, volume) of the equity specified, updated realtime.

Request Params

KeyDatatypeRequiredDescription
functionstring
symbolstringThe stocker ticker symbol.
intervalstringThe interval for series (1min, 5min, 15min, 30min, 60min)
outputsizestringBy default, outputsize=compact. Strings compact and full are accepted with the following specifications: compact returns only the latest 100 data points in the intraday time series; full returns the full-length intraday time series. The compact option is recommended if you would like to reduce the data size of each API call.
datatypestringBy default, datatype=json. Strings json and csv are accepted with the following specifications: json returns the intraday time series in JSON format; csv returns the time series as a CSV (comma separated value) file.