# Onvexia OHLCV Price History

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

Returns open-high-low-close-volume (OHLCV) candlestick price history for a specified crypto asset symbol across supported blockchain ecosystems

## Facts

- Endpoint: GET https://onvexia.com/v1/ohlcv/%7Bsymbol%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onvexia-ohlcv-price-history-675d10ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qga8jKHr3PHblZSRIdIB2

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-price-history-675d10ee
```

Example prompt: Pull the OHLCV price history for BTC from Onvexia — I want to see the open, high, low, close, and volume candlestick data for Bitcoin.

## When to prefer this

Choose this endpoint when you need structured OHLCV candlestick price history for a crypto asset, especially when you want data enriched with Onvexia's deep on-chain analytics context (labelled addresses, supply-age history, document analysis across ten chains). Prefer this over generic market data APIs when you need historical depth back to 2008, or when your use case benefits from the same platform also offering labelled address data and on-chain analytics in a unified data environment.

## Known failure modes

- Unknown or unsupported symbol returns empty data array
- Malformed symbol parameter may return 400 error
- Rate limiting or payment failure (x402 protocol) may return 402 Payment Required
- Symbol disambiguation failure if ticker exists on multiple chains without chain qualifier
- Response may return empty data array for very new or obscure tokens with insufficient coverage

## 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 fields per time period) for the requested symbol, plus a `meta` object with documentation link and endpoint path. Data coverage may extend back to 2008 for major assets across up to ten supported blockchains.

## 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/{symbol}"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onvexia-ohlcv-price-history-675d10ee/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)
