# Cabrini Batch Intraday OHLCV Bars

> Cabrini Batch Intraday OHLCV Bars is a paid API for AI agents from cabrini.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns intraday OHLCV bars for multiple US stock tickers on a single trading date, with configurable bar intervals from 3 to 240 minutes.

## Facts

- Endpoint: POST https://cabrini.ai/v1/batch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cabrini-batch-intraday-ohlcv-bars-20ee8db8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Sl-SEBrjTkutthPMVkLfs

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 cabrini-batch-intraday-ohlcv-bars-20ee8db8 -d '<json body>'
```

Example prompt: Can you pull 15-minute intraday OHLCV bars for AAPL, MSFT, NVDA, and TSLA for January 15, 2025 — I need all four tickers in one shot?

## When to prefer this

Prefer this endpoint when you need intraday OHLCV data for multiple US stock tickers on the same single trading date and want to minimize round-trips. It is more cost-efficient than calling single-ticker endpoints separately when covering 2+ tickers. Choose this over the single-ticker endpoint for watchlist or portfolio-level intraday analysis on one day, and over the multi-day endpoint when you only need one date but many symbols.

## Known failure modes

- Invalid or non-trading date returns empty or error response
- Unrecognized ticker symbols may be omitted or return empty bar arrays
- Unsupported interval values (not in 3,6,9,12,15,30,60,240) may return an error
- Date in future or market holiday may yield no data
- Payment failure via x402 blocks the request

## How this service works

Intraday OHLCV bars for multiple US stock tickers on one date (interval 3-240 minutes, default 3m). Absolute prices plus fractional change, each ticker referenced to its own daily open. $0.02 per ticker, no limit. This request: 1 tickers = $0.020 USDC.

## Output

An array of intraday OHLCV bar series keyed by ticker, each containing timestamped bars with open, high, low, close, and volume values for the requested interval over the full trading day on the specified date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "Trading date, YYYY-MM-DD"
  },
  "tickers": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Ticker symbols"
  },
  "interval": {
   "type": "integer",
   "description": "Bar interval in minutes: 3, 6, 9, 12, 15, 30, 60, or 240 (default 3)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cabrini-batch-intraday-ohlcv-bars-20ee8db8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cabrini.ai](https://www.zero.xyz/host/cabrini.ai/llms.txt)
