# Carbon & Cashmere Signal API – ETH Snapshot

> Carbon & Cashmere Signal API – ETH 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 Ethereum 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/ETH
- 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-eth-snapshot-86d78add
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W-P1bTw4KujbyBFG0_J-x

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-eth-snapshot-86d78add
```

Example prompt: What's the current market snapshot for ETH — give me the RSI, funding rate, mempool conditions, and whether the ML model is calling a long or short right now?

## When to prefer this

Use this endpoint when you need a fast, bundled Ethereum market intelligence snapshot combining technical indicators (RSI), derivatives data (funding rate), on-chain mempool conditions, and an ML directional signal in a single call — rather than stitching together multiple data sources. Prefer this over generic price APIs when you need actionable trading signals with probability scores, not just raw price data.

## Known failure modes

- Unsupported coin symbol in path returns 404 or empty response
- Stale data if market feed is delayed — probability scores may lag real conditions
- Payment failure (x402) if USDC balance is insufficient — returns 402 Payment Required
- Network timeout if the ETH node or mempool data source is temporarily unavailable
- Schema mismatch if the coin has no mempool (non-UTXO chains) — mempool fields may be null

## How this service works

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

## Output

A JSON object containing the coin identifier (ETH), technical indicators (RSI-14, funding rate), mempool stats (1-block fee estimate in sat/vB, mempool size in MB), and an ML signal with a directional call (long/short) and associated 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-eth-snapshot-86d78add/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)
