# Carbon & Cashmere AI Price Impact Estimator (BTC)

> Carbon & Cashmere AI Price Impact Estimator (BTC) 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 an AI-generated indicative price-impact estimate for a hypothetical BTC trade, including slippage, liquidity depth metrics, and an execution verdict.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/ai/price-impact/BTC
- 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-ai-price-impact-estimator-btc-2e63d948
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z9wGTuOcObCJ5F1_fl_CY

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-ai-price-impact-estimator-btc-2e63d948
```

Example prompt: I'm about to buy $50,000 worth of BTC — can you check the price impact and slippage estimate, and tell me whether I should execute all at once or split the order?

## When to prefer this

Choose this endpoint when you need a quick, AI-narrated pre-trade liquidity and slippage assessment for BTC before executing a large order. It is ideal for agents that need a human-readable verdict alongside numeric depth metrics, rather than raw L2 order book data. Prefer this over generic price feeds when the key question is 'how much will my trade move the market and should I split it?'

## Known failure modes

- Unsupported coin symbol returns 404 or error
- Missing or invalid usd query parameter causes a 400 bad request
- Stale order book data may affect accuracy of depth metrics
- Model described as 'indicative-aggregate (not full L2 walk)' — not a precise execution simulation
- Network timeout or service downtime returns 5xx

## How this service works

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

## Output

A JSON object containing: the coin ticker and trade side, an AI-generated plain-English summary with an execution verdict (e.g. 'execute immediately' or 'split order'), the USD trade amount, depth metrics (mid price, spread %, available depth in USD, trade size as % of depth), and an estimated impact object showing severity classification and estimated slippage percentage.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "side": "buy",
  "ai_summary": "A $50k BTC buy is small relative to current ask depth (~5.9% of available $850k). Expected slippage is minimal at ~0.0025% above mid. Liquidity is healthy. Verdict: execute immediately, no split needed.",
  "usd_amount": 50000,
  "depth_metrics": {
   "mid_price": 95000.5,
   "spread_pct": 0.005,
   "available_depth_usd": 850000,
   "trade_size_pct_of_depth": 5.88
  },
  "estimated_impact": {
   "model": "indicative-aggregate (not full L2 walk)",
   "severity": "minimal",
   "est_slippage_pct": 0.0025
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-ai-price-impact-estimator-btc-2e63d948/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)
