# Carbon & Cashmere Signal API – ETH Bundle

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

Returns real-time Ethereum price, market regime classification, ML directional signal, fear/greed index, and composite market score in a single bundle.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/bundle/ETH
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-signal-api-eth-bundle-e0a185a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UpNkzMA1Wfp1-iqMDx8Gw

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-bundle-e0a185a8
```

Example prompt: What's Ethereum's current price and market situation — is it in markup or distribution, and what's the ML signal and fear/greed reading right now?

## When to prefer this

Use this endpoint when you need a single comprehensive snapshot of ETH market intelligence — combining price, regime, ML signal, and sentiment — rather than fetching each data type from separate endpoints. Ideal for agents making trading decisions, monitoring dashboards, or user-facing market summaries that require multiple dimensions of crypto market context simultaneously.

## Known failure modes

- Unsupported coin symbol returns 404 or error response
- Stale or unavailable market data may return degraded confidence scores
- Payment failure (x402) if USDC balance is insufficient
- Network timeout if upstream data providers are slow
- Rate limiting if too many calls made in short succession

## How this service works

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

## Output

A JSON object containing the coin identifier, current USD price with 24h change percentage, market regime state (e.g. markup/distribution) with confidence score, ML directional signal (up/down) with confidence and probability, fear/greed index label and numeric value, and a composite market score label and numeric score.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "price": {
   "usd": 84532.1,
   "change_24h": -1.2
  },
  "regime": {
   "state": "markup",
   "confidence": 0.82
  },
  "ml_signal": {
   "direction": "up",
   "confidence": 0.24,
   "probability": 0.62
  },
  "fear_greed": {
   "label": "Greed",
   "value": 65
  },
  "market_score": {
   "label": "Bullish",
   "score": 63
  }
 }
}
```

## More

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