# US Stock Historical OHLCV Data

> US Stock Historical OHLCV Data is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.059/call, status unknown (last checked 2026-09-14).

Returns historical price bars (OHLCV) for a US stock or index ticker over a specified time window and bar resolution.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/us-stock-history
- Price: $0.059/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-stock-historical-ohlcv-data-70594411
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h5FbCNAOfvvi4sbEYtYcq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability us-stock-historical-ohlcv-data-70594411
```

Example prompt: Pull the daily price history for AAPL over the last 90 days — I want open, high, low, close, and volume bars so I can analyze its recent trend.

## When to prefer this

Use this endpoint when you need historical OHLCV candlestick data for US-listed equities, ETFs, or major indices (e.g. ^VIX, BRK-B) without needing an account or API key — ideal for AI agents that can pay per-call via USDC on Base. Prefer this over traditional data providers when integrating into x402 payment workflows or when you need flexible resolution from 1-minute intraday to monthly bars.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- 'from' timestamp after 'to' timestamp results in empty or error response
- Unsupported resolution value returns validation error
- Market data unavailable for very old dates or non-trading periods may return empty bars
- Network or payment failure (402 if USDC payment not processed)

## How this service works

Historical OHLCV bars for any US stock, ETF, or index. TradingView-compatible resolution (D, W, M, 60, 15, 5, 1). Pass Unix timestamps for from/to. Matches blockrun.ai at $0.001/call — same price, no API key required. Use us-stock-price for live quotes; equity-technicals for indicators.

## Output

An array of OHLCV price bars for the requested ticker, each bar containing open, high, low, close prices and volume, timestamped according to the chosen resolution (1/5/15/60/240-minute, daily, weekly, or monthly) over the specified time window.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL",
   "resolution": "D"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-stock-historical-ohlcv-data-70594411/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
