# Carbon Cashmere BTC OHLCV Candlestick Data

> Carbon Cashmere BTC OHLCV Candlestick Data 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 paid OHLCV (Open, High, Low, Close, Volume) candlestick data for Bitcoin across configurable time intervals and day ranges.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/ohlcv/BTC
- 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/api-carbon-cashmere-de-f83c4bda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LwG4uOjeXgXBWZ5-q8gb6

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 api-carbon-cashmere-de-f83c4bda
```

Example prompt: Can you get me the hourly BTC candlestick data for the last 7 days from Carbon Cashmere's OHLCV endpoint so I can run some technical analysis?

## When to prefer this

Use this endpoint when you specifically need Bitcoin OHLCV candlestick data with flexible interval granularity (15m to 1d) and up to 90 days of history. Prefer this over generic price endpoints when you need structured OHLCV format suitable for technical analysis, charting, or backtesting. Note that this is BTC-only; use other endpoints for multi-coin data.

## Known failure modes

- days parameter out of range (must be 1-90) returns validation error
- invalid interval value (must be 15m, 1h, 4h, or 1d) returns error
- payment failure or insufficient USDC balance blocks request (x402 payment required)
- response truncated for large datasets — check _truncated flag and _originalSize

## How this service works

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

## Output

An array of OHLCV candles for Bitcoin with fields including open, high, low, close, and volume per time period, along with metadata like coin name, candle count, and interval. The response may be truncated for large datasets (originalSize indicates full response size).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "days": 7,
   "interval": "1h"
  }
 }
}
```

## 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/api-carbon-cashmere-de-f83c4bda/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)
