# Carbon & Cashmere OHLCV API – ETH Price Candles

> Carbon & Cashmere OHLCV API – ETH Price Candles is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns OHLCV (open, high, low, close, volume-sampled) candlestick data for Ethereum (ETH) at hourly intervals

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/ohlcv/ETH
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-ohlcv-api-eth-price-candles-7c48f29b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D7gSWMN2iqSztRyY_80Ec

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 carbon-cashmere-ohlcv-api-eth-price-candles-7c48f29b
```

Example prompt: Pull the last 720 hourly OHLCV candles for ETH from Carbon & Cashmere so I can run a technical analysis on recent Ethereum price action.

## When to prefer this

Use this endpoint when you need structured OHLCV candlestick data for Ethereum specifically, suitable for technical analysis, charting, or feeding into quantitative models. Prefer this over generic price APIs when you need multi-bar historical data with open/high/low/close granularity rather than just a spot price.

## Known failure modes

- Invalid coin symbol returns 404 or empty result
- Unsupported interval parameter returns 400 bad request
- Payment not included or insufficient results in 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Downstream data feed outage causes stale or missing candles

## How this service works

Professional crypto market intelligence. Real-time prices, signals, and market scoring.

## Output

Returns a JSON object containing the coin identifier (ETH), the number of candles returned, the interval (e.g. '1h'), and an array of candle objects each with a UTC timestamp, low, high, open, close prices, and a sample count indicating how many data points were aggregated into that candle.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "count": 720,
  "candles": [
   {
    "ts": "2026-03-15T14:00:00Z",
    "low": 83100.2,
    "high": 83450,
    "open": 83200.5,
    "close": 83350.8,
    "samples": 28
   }
  ],
  "interval": "1h"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-ohlcv-api-eth-price-candles-7c48f29b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.carbon-cashmere.de](https://www.zero.xyz/host/api.carbon-cashmere.de/llms.txt)
