Available as MCP tool:
equity_intraday_prices — call directly from Claude / Cursor / any MCP client. See MCP Server for the 60-second setup.What it does for your agent
equity_intraday_prices returns 1h OHLCV bars for a single US equity (NYSE / NASDAQ) during the regular trading session. Use it as the intraday pricing primitive an agent reaches for when answering “how did this trade today / over the last few sessions, did it gap, did it reverse, how did it close” — without pulling overly fine minute-level data.
It is the short-lookback companion to equity_historical_prices: same equity-bars family, same response envelope, but intraday bars. Use start_date and/or end_date to filter the candidate window, then limit and take_from choose which edge to keep. The queried window is capped at 14 calendar days. Only closed bars are returned — the in-progress bar is never included.
Response
EquityIntradayResult
required
number
Credits consumed (always
1).number
Account credits remaining.
200 OK · equity_intraday_prices
Notes
Direct invocation
HTTP / SDK examples
HTTP / SDK examples
Full parameter reference
equity_intraday_prices — request parameters
equity_intraday_prices — request parameters
string
required
US equity ticker (e.g.
AAPL, MSFT, BRK.B, ^GSPC for S&P 500 index).string
default:"1h"
Bar interval. Only
1h is supported; any other value returns a 400 error.string
Optional inclusive lower trading-date boundary in
YYYY-MM-DD (interpreted in America/New_York). The window it opens must stay within 14 calendar days of end_date — or of the current US Eastern date when end_date is omitted.string
Optional inclusive upper trading-date boundary in
YYYY-MM-DD (interpreted in America/New_York). Defaults to the current US Eastern date.integer
default:35
Maximum
1h bars to return after boundary filtering. Default 35. Max 70.string
default:"latest"
Which side of the filtered window to keep when more than
limit bars match. Use latest or earliest; output remains chronological.Related
Equity Historical Prices
Daily OHLCV bars with adjusted close, dividends, and splits — the long-lookback companion.
MCP Server setup
Connect Claude / Cursor / any harness in 60 seconds.