Skip to main content
Available as MCP tool: equity_intraday_prices — call directly from Claude / Cursor / any MCP client. See MCP Server for the 60-second setup.
Live   1 credit per call

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 and a tighter window. Two query modes share one endpoint: pass limit to get the most recent N closed bars, or pass start_date + end_date for a short window. Only closed bars are returned — the in-progress bar is never included.

Response

data
EquityIntradayResult
required
meta.creditsUsed
number
Credits consumed (always 1).
meta.remainingCredits
number
Account credits remaining.
200 OK · equity_intraday_prices
{
  "data": {
    "ticker": "AAPL",
    "interval": "1h",
    "prices": [
      {
        "open": 181.20,
        "high": 181.95,
        "low": 180.85,
        "close": 181.60,
        "volume": 4821000,
        "time": "2026-06-18T13:30:00Z"
      },
      {
        "open": 181.60,
        "high": 182.40,
        "low": 181.40,
        "close": 182.10,
        "volume": 3950000,
        "time": "2026-06-18T14:30:00Z"
      }
    ]
  },
  "meta": { "creditsUsed": 1, "remainingCredits": 99 }
}

Notes

time is an ISO 8601 UTC timestamp marking the start of each bar. Bars cover the US regular session, so convert to America/New_York if you need exchange-local hours.
Use data.prices.length when you need the returned bar count; meta is reserved for credits and optional notices.
Hourly interval only. Minute-level (1m, 5m, 15m) and 30m bars are not exposed. Pass interval=1h or omit it; any other value returns a 400 error.
Regular session only. Pre-market and after-hours bars are not included. For full trading days, use equity_historical_prices.
No real-time quote. The current, still-forming bar is excluded until it closes. For the latest tick, this tool isn’t the right primitive.
Short lookback. Recent mode caps at 70 bars (~10 trading days); range mode caps at a 14 calendar-day window. For longer history, use daily bars.

Direct invocation

// Recent mode — last 35 bars (~5 trading days)
{
  "method": "tools/call",
  "params": {
    "name": "equity_intraday_prices",
    "arguments": { "ticker": "AAPL", "limit": 35 }
  }
}

// Range mode — short explicit window
{
  "method": "tools/call",
  "params": {
    "name": "equity_intraday_prices",
    "arguments": {
      "ticker": "MSFT",
      "start_date": "2026-06-08",
      "end_date": "2026-06-18"
    }
  }
}

Full parameter reference

ticker
string
required
US equity ticker (e.g. AAPL, MSFT, BRK.B, ^GSPC for S&P 500 index).
interval
string
default:"1h"
Bar interval. Only 1h is supported; any other value returns a 400 error.
Pass limit only (or omit it for the default). Returns the most recent N closed 1h bars.
limit
integer
default:35
Number of recent bars. Default 35 (~5 trading days). Max 70 (~10 trading days).

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.