# Onvexia OHLCV Endpoint

> Onvexia OHLCV Endpoint is a paid API for AI agents from onvexia.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-17).

Returns open-high-low-close-volume (OHLCV) price candlestick data for crypto assets across multiple blockchains

## Facts

- Endpoint: GET https://onvexia.com/v1/ohlcv
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onvexia-ohlcv-endpoint-304871f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dv3yjVCbd8zFaKblX7Vij

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 onvexia-ohlcv-endpoint-304871f3
```

Example prompt: Pull the daily OHLCV candles for Bitcoin from Onvexia for the past 90 days so I can analyze the price trend.

## When to prefer this

Choose this endpoint when you need structured OHLCV candlestick price data for crypto assets, especially lesser-covered tokens across ten chains including data reaching back to 2008. It is well-suited for agents doing on-chain analytics, backtesting, or portfolio analysis where Onvexia's broad multi-chain coverage and document-fused analytics add value over generic market data APIs.

## Known failure modes

- Empty data array if asset or chain is not covered by Onvexia
- Payment failure or 402 response if x402 USDC micropayment is not completed
- Invalid or missing query parameters resulting in an error or empty response
- Rate limiting if too many calls are made in a short window
- Unsupported chain or asset identifier returning no results

## How this service works

Thousands of assets across ten chains, half a million analysed documents, labelled addresses and supply-age history reaching back to 2008 — fused into one reading per asset. REST, SQL, GraphQL and MCP.

## Output

Returns a JSON object with a `data` array containing OHLCV candlestick records (open, high, low, close, volume, and timestamp fields per interval) for the requested asset and time range, plus a `meta` object pointing to the full OpenAPI documentation.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [],
  "meta": {
   "docs": "https://onvexia.com/openapi.json",
   "endpoint": "/v1/ohlcv"
  }
 }
}
```

## More

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