# Carbon & Cashmere Signal API – SOL Historical OHLCV & Funding

> Carbon & Cashmere Signal API – SOL Historical OHLCV & Funding is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.02/call, status down (last checked 2026-09-16).

Returns historical OHLCV candlestick data and funding rates for Solana (SOL) at a specified interval

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/intel/history/SOL
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-signal-api-sol-historical-ohlcv-funding-dafa4619
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r9R4a-tIGloiO681Us7R9

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-signal-api-sol-historical-ohlcv-funding-dafa4619
```

Example prompt: Pull the last 4-hour OHLCV candles and funding rates for SOL from Carbon & Cashmere so I can review recent Solana price action and funding history.

## When to prefer this

Use this endpoint when you need historical candlestick (OHLCV) data and funding rates specifically for SOL/Solana, especially when you want professional-grade crypto market intelligence packaged with funding rate data in a single call. Prefer this over generic market data APIs when working within the Carbon & Cashmere ecosystem or when paying per-call via x402 micropayments.

## Known failure modes

- Invalid or unsupported coin symbol returns 404 or empty result
- Unsupported interval parameter returns 400 bad request
- No data available for requested time range returns empty arrays
- Payment not included or insufficient USDC triggers 402 payment required
- Rate limiting or quota exceeded returns 429

## How this service works

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

## Output

A JSON object containing the coin symbol (SOL), an array of OHLCV candles each with open, high, low, close, volume, and timestamp, an array of funding rate entries with timestamp and rate, and the interval used (e.g. '4h').

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "ohlcv": [
   {
    "c": 84800,
    "h": 85200,
    "l": 84100,
    "o": 84500,
    "v": 12500,
    "ts": "2026-04-13T00:00:00"
   }
  ],
  "funding": [
   {
    "ts": "2026-04-13T00:00:00",
    "rate": 0.0001
   }
  ],
  "interval": "4h"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-signal-api-sol-historical-ohlcv-funding-dafa4619/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)
