# Carbon Cashmere Agent Decision Pack

> Carbon Cashmere Agent Decision Pack is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Returns a single comprehensive trading decision bundle for a given cryptocurrency, including price, ML signal, regime, funding, derivatives, mempool, whale activity, liquidations, Fear & Greed index, risk score, and a text recommendation.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/decision/BTC
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-carbon-cashmere-de-e5b2e919
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rPVKUK7Bd2sTNKdcGtuYK

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 api-carbon-cashmere-de-e5b2e919
```

Example prompt: Give me the full Carbon Cashmere decision pack for BTC — I want the price, conviction score, ML signal, market regime, funding, whale activity, and the text recommendation all in one shot.

## When to prefer this

Use this endpoint when an AI agent needs a single, all-in-one trading intelligence call rather than assembling signals from multiple endpoints. Ideal for autonomous trading bots or decision pipelines that need a ready-made recommendation with multi-factor context. Prefer over individual signal endpoints when latency and simplicity matter more than granular control over each data source.

## Known failure modes

- Unsupported coin symbol returns error — only BTC, ETH, SOL, TAO, KAS, XLM are covered
- Payment failure (x402) if USDC balance is insufficient or wallet not configured
- Stale data if upstream data sources are temporarily unavailable
- Rate limiting if too many calls are made in quick succession
- Missing or malformed coin query parameter returns 400-level error

## How this service works

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

## Output

A JSON object containing: current price with metadata, a conviction score, market regime classification, funding rate data, derivatives snapshot, mempool stats, whale activity indicators, liquidation data, ML model signal, Fear & Greed index value, a risk object, and a plain-text recommendation string — all for the requested coin.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "price": {
   "price_usd": 84500,
   "change_24h": -1.2
  },
  "regime": {
   "state": "markup"
  },
  "funding": {
   "rate": 0.0001
  },
  "ml_signal": {
   "direction": "up",
   "probability": 0.62
  },
  "conviction": {
   "score": 62,
   "direction": "long"
  },
  "recommendation": "Price $84,500. Conviction 62/100 (long). Regime: markup."
 }
}
```

## More

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