# Excelexi OHLCV Data Endpoint

> Excelexi OHLCV Data Endpoint is a paid API for AI agents from api.excelexi.com, paid per call via x402, $0.00002/call, status unknown (last checked 2026-09-14).

Fetches OHLCV (Open, High, Low, Close, Volume) candlestick data for a given financial symbol and interval, paid via x402 USDC micropayment on Base.

## Facts

- Endpoint: POST https://api.excelexi.com/api/v1/ohlcv
- Price: $0.00002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/excelexi-ohlcv-data-endpoint-539aa235
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XEfhwANiyStXoHjVjRHfd

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 excelexi-ohlcv-data-endpoint-539aa235 -d '<json body>'
```

Example prompt: Can you pull the last 50 hourly OHLCV candles for BTC/USDT from Excelexi so I can see the recent price action?

## When to prefer this

Choose this endpoint when you need raw OHLCV candlestick price data for technical analysis, backtesting, or charting and you are operating in an x402-enabled agent context that can sign USDC micropayments on Base. It is ideal for AI trading agents, quant workflows, or dashboards that need structured price bars at a very low per-call cost ($0.00002 USDC). Prefer alternatives if you need pre-computed technical indicators rather than raw OHLCV, or if your agent cannot handle x402 payment flows.

## Known failure modes

- 402 Payment Required — x402 payment gate active; must submit signed EIP-3009 transferWithAuthorization proof in X-Payment header before data is returned
- 400 Bad Request — missing required 'symbol' field or invalid interval/limit values
- Invalid symbol — unknown or unsupported trading pair returns an error or empty dataset
- Network timeout — compute or upstream market data unavailable
- Insufficient USDC balance — payment authorization fails if wallet lacks funds on Base (chain 8453)

## How this service works

**Excelexi** — Financial technical indicators API marketplace.

Agent-consumable OpenAPI document for the public Excelexi indicator surface.

**x402 Payment**: Indicator compute endpoints require a USDC micropayment on Base (Coinbase L2, chain 8453). When the x402 gate is active, a 402 Payment Required response is returned with a payment challenge. Submit the signed EIP-3009 transferWithAuthorization proof in the `X-Payment` header and retry the request.

**Discovery**: `GET /.well-known/x402` returns the current per-slug prices.

**Regulatory notice**: All indicator outputs are informational only and do not constitute financial advice. Responses include `regulatory_notice` = `"information_only_not_financial_advice"`.

## Output

Returns an array of OHLCV candlestick objects each containing open_time (ISO 8601 timestamp), open, high, low, close prices, and volume figures. Also includes a regulatory_notice field confirming outputs are informational only and not financial advice.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "limit": {
   "type": "integer"
  },
  "symbol": {
   "type": "string"
  },
  "interval": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": [
  {
   "low": 64890,
   "high": 65210.5,
   "open": 65000.1,
   "close": 65100.2,
   "volume": 1234.56,
   "open_time": "2026-08-11T12:00:00Z"
  }
 ],
 "regulatory_notice": "information_only_not_financial_advice"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/excelexi-ohlcv-data-endpoint-539aa235/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.excelexi.com](https://www.zero.xyz/host/api.excelexi.com/llms.txt)
