# SuVerse Crypto OHLC History

> SuVerse Crypto OHLC History is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns daily OHLC candle bar data (open, high, low, close, timestamp) for any cryptocurrency over the past 365 days

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-crypto-ohlc-history
- 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/proxy-suverse-io-e637551e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8PZPYcKBgiNnGAL-KnMyf

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 proxy-suverse-io-e637551e -d '<json body>'
```

Example prompt: Pull the last 365 days of daily OHLC candle data for Bitcoin (BTC) so I can run a technical analysis and backtest a moving average strategy on it.

## When to prefer this

Use this endpoint when you need structured daily OHLC candlestick data for any cryptocurrency for up to 365 days — ideal for backtesting trading strategies, generating price charts, computing volatility metrics, or running technical analysis patterns. Prefer this over real-time tick data endpoints when daily granularity is sufficient and historical breadth is more important than sub-day resolution.

## Known failure modes

- Unknown or unsupported coin symbol returns an error or empty dataset
- Date range exceeding 365 days may be capped or return an error
- Payment failure (insufficient USDC) prevents data return
- Malformed POST body results in a 400-level error
- Coin with insufficient history returns partial dataset

## How this service works

Daily OHLC candle bars (open/high/low/close) for any coin up to 365 days back. Timestamp + OHLC per day. AI agent technical analysis, backtest, chart generator, volatility calculator, pattern recognition. Standard format for all TA libraries. CoinGecko.

## Output

An array of daily candle bar objects each containing a Unix timestamp, open price, high price, low price, and close price for the requested coin, covering up to 365 calendar days of history in industry-standard format compatible with charting libraries.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-e637551e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
