Logo
APILayer API Documentation

Intraday Data

GET https://api.marketstack.com/v1/intraday?symbols=AAPL

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



HEADERS

Key Datatype Required Description 




RESPONSES

status OK

{ "pagination": { "limit": 100, "offset": 0, "count": 100, "total": 12523 }, "data": [ { "open": 172.47, "high": 174.305, "low": 171.92, "last": 172.72, "close": 171.13, "volume": 744419, "date": "2024-03-14T19:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 173.7, "close": 171.13, "volume": 640313, "date": "2024-03-14T18:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 172.42, "close": 171.13, "volume": 476972, "date": "2024-03-14T17:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 174.305, "low": 171.92, "last": 173.27, "close": 171.13, "volume": 382036, "date": "2024-03-14T16:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 173.84, "high": 174.01, "low": 173.815, "last": null, "close": null, "volume": 4349, "date": "2024-03-14T15:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.47, "high": 173.28, "low": 171.92, "last": 172.41, "close": 171.13, "volume": 121538, "date": "2024-03-14T14:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.72, "high": 173.4, "low": 170.76, "last": 171.71, "close": 173.23, "volume": 622411, "date": "2024-03-13T19:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.72, "high": 173.4, "low": 170.76, "last": 171.49, "close": 173.23, "volume": 571190, "date": "2024-03-13T18:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.72, "high": 173.4, "low": 170.76, "last": 171.08, "close": 173.23, "volume": 519512, "date": "2024-03-13T17:00:00+0000", "symbol": "AAPL", "exchange": "IEXG" }, { "open": 172.72, "high": 173.4, "low": 170.76, "last": 171.02,
Curl
curl -X GET 'https://api.marketstack.com/v1/intraday?symbols=AAPL?symbols=AAPL'

ENDPOINTS