Logo
APILayer API Documentation

Real-Time Updates

GET https://api.marketstack.com/v1/intraday?symbols=AAPL&interval=1min

For customers with an active subscription to the Professional Plan, the marketstack API's intraday endpoint is also capable of providing real-time market data, updated every minute, every 5 minutes or every 10 minutes.

 

Body PARAM

Key Datatype Required Description 
symbols
string [Required] Specify one or multiple comma-separated stock symbols (tickers) for your request, e.g. AAPL or AAPL,MSFT. Each symbol consumes one API request. Maximum: 100 symbols.
interval
string [Required] Specify the interval parameter and set it to 1min, 5min or 10min to obtain real-time data using this endpoint



HEADERS

Key Datatype Required Description 




RESPONSES

status OK

{ "pagination": { "limit": 100, "offset": 0, "count": 100, "total": 173631 }, "data": [ { "open": 172.47, "high": 174.305, "low": 171.92, "last": 173.08, "close": 171.13, "volume": 918508, "date": "2024-03-14T19:59:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 172.955, "close": 171.13, "volume": 904970, "date": "2024-03-14T19:58:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 172.93, "close": 171.13, "volume": 894291, "date": "2024-03-14T19:57:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 172.98, "close": 171.13, "volume": 887537, "date": "2024-03-14T19:56:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 173.09, "close": 171.13, "volume": 875634, "date": "2024-03-14T19:55:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 173.1, "high": 173.145, "low": 173.025, "last": null, "close": null, "volume": 2390, "date": "2024-03-14T19:54:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 173.1, "close": 171.13, "volume": 873044, "date": "2024-03-14T19:53:00+0000", "symbol": &
Curl
curl -X GET 'https://api.marketstack.com/v1/intraday?symbols=AAPL&interval=1min?symbols=AAPL&interval=1min'

ENDPOINTS