# Carbon & Cashmere Signal API – SOL Snapshot

> Carbon & Cashmere Signal API – SOL Snapshot 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-13).

Returns real-time Solana market intelligence including RSI, funding rate, mempool stats, and ML directional signal with probability.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/intel/snapshot/SOL
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-signal-api-sol-snapshot-5bd28c78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_purD-YwqMy_x64TIvcVWH

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-snapshot-5bd28c78
```

Example prompt: Pull the latest Carbon & Cashmere market intelligence snapshot for SOL — I want to see the RSI, funding rate, mempool fees, and whether the ML model is signaling long or short right now.

## When to prefer this

Use this endpoint when you need a fast, bundled snapshot of Solana's technical indicators, mempool state, and ML directional signal in a single call rather than querying multiple data sources separately. Ideal for trading bots, signal dashboards, or agents making short-term directional decisions on SOL.

## Known failure modes

- Unknown or unsupported coin symbol returns 404 or empty data
- Payment not attached or insufficient USDC triggers 402 Payment Required
- Rate limiting if requests exceed plan threshold returns 429
- Stale data if upstream exchange or on-chain feeds are delayed
- Malformed response if mempool or derivatives data is temporarily unavailable

## How this service works

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

## Output

A JSON object containing the coin identifier (SOL), technical indicators (RSI-14, funding rate), mempool metrics (1-block fee, mempool size in MB), and an ML ensemble signal with direction (long/short) and probability score.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "data": {
   "rsi_14": 55.2,
   "funding_rate": 0.0001
  },
  "mempool": {
   "fee_1block": 8,
   "mempool_mb": 12.5
  },
  "ml_signal": {
   "direction": "long",
   "probability": 0.68
  }
 }
}
```

## More

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