# finance.toon.haus Stock Price History (OHLCV)

> finance.toon.haus Stock Price History (OHLCV) is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns OHLCV (Open, High, Low, Close, Volume) candlestick price history for a given stock symbol

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/price-history
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-410240f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I22tQJ12nRP6hDUdDlNzx

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 finance-toon-haus-410240f1
```

Example prompt: Can you pull the daily OHLCV candlestick price history for AAPL over the past 3 months so I can analyze price trends?

## When to prefer this

Use this endpoint when you need historical candlestick (OHLCV) price data for US equities for charting, backtesting, or technical analysis. Prefer over general market data sources when paying micro-fees per call is acceptable and you need lightweight, on-demand access without a subscription.

## Known failure modes

- Invalid or unknown ticker symbol returns empty or error response
- Missing required query parameters results in a 400 bad request
- Payment not provided or insufficient balance returns 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Requested date range outside available history returns empty dataset

## How this service works

OHLCV candles

## Output

A series of OHLCV candle records for the requested stock symbol, each containing open, high, low, close prices and volume for each time interval, enabling charting and technical analysis.

## Example request

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

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toon-haus-410240f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
