# The Stall — Stock OHLCV Candlestick Data

> The Stall — Stock OHLCV Candlestick 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-13).

Returns historical OHLCV (open, high, low, close, volume) candlestick data for a given stock, ETF, crypto, or index ticker symbol across configurable intervals and lookback periods.

## Facts

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

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 the-stall-stock-ohlcv-candlestick-data-d2374060
```

Example prompt: Can you pull the last 90 daily OHLCV candles for AAPL going back 6 months so I can chart its price history?

## When to prefer this

Use this endpoint when you need structured historical OHLCV candlestick data for stocks, ETFs, crypto pairs (e.g. BTC-USD), or market indices (e.g. ^VIX) without needing an account or API key — paying only $0.01 USDC per call via x402 on Base mainnet. Ideal for AI agents performing technical analysis, backtesting, charting, or market monitoring with flexible interval and range options.

## Known failure modes

- Invalid ticker symbol returns an error or empty dataset
- Intraday intervals (1m–1h) requested beyond the 60-day cap return an error or truncated data
- Limit value outside 1–500 range is rejected by schema validation
- Unknown range enum value causes a validation error
- Network or upstream data provider outage may return a 5xx error
- Crypto or index tickers with unsupported symbols may return no data

## How this service works

Returns historical OHLCV (open/high/low/close/volume) candlestick data for a stock, ETF, or index. Supports intervals from 1-minute to monthly and ranges from 1 day to max history. Use for chart analysis, trend detection, and quantitative backtesting. $0.010/call — free upstream, no API key.

## Output

Returns an array of candlestick bars for the requested ticker, each containing timestamp, open, high, low, close, and volume values, ordered from oldest to most recent, limited to the requested count and interval within the specified lookback range.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 90,
   "range": "6mo",
   "ticker": "AAPL",
   "interval": "1d"
  }
 }
}
```

## 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/the-stall-stock-ohlcv-candlestick-data-d2374060/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)
