# Carbon & Cashmere ETH Signal Feed

> Carbon & Cashmere ETH Signal Feed is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns real-time ML-driven trading signal for Ethereum including market regime, directional bias, confidence score, and win-rate track record.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/signal-feed/ETH
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-eth-signal-feed-9344be2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4VbZjReUCNg0-I0h2Dh7Y

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-eth-signal-feed-9344be2c
```

Example prompt: What's the current Carbon & Cashmere ML signal for ETH — is it long or short, what regime are we in, and how confident is the model?

## When to prefer this

Use this endpoint when you need a real-time, ML-driven directional trading signal specifically for Ethereum with regime context and calibrated confidence scores. Prefer this over generic price APIs when you want an actionable buy/sell signal with historical accuracy metadata rather than raw price data alone.

## Known failure modes

- Unsupported coin symbol returns 404 or empty response
- Stale or unavailable market data may delay signal freshness
- Payment failure via x402 protocol returns 402 Payment Required
- High confidence score does not guarantee profitable trades — model win rate around 41% indicates signal uncertainty

## How this service works

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

## Output

Returns a JSON object with the coin ticker (ETH), the ML model used (e.g. tsfresh_xgb), current market regime (e.g. high_volatility), directional signal (long/short), whether the signal is actionable, a confidence score (0-1), a probability score (0-1), and historical track record including win rate percentage.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "model": "tsfresh_xgb",
  "regime": "high_volatility",
  "direction": "long",
  "actionable": true,
  "confidence": 0.93,
  "probability": 0.97,
  "track_record": {
   "win_rate": 41.2
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-eth-signal-feed-9344be2c/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)
