# Carbon & Cashmere AI Price Impact Estimator

> Carbon & Cashmere AI Price Impact Estimator 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-16).

Estimates the indicative price impact and expected slippage for a hypothetical crypto trade of a given USD size on a specified coin.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/ai/price-impact/%7Bcoin%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-ai-price-impact-estimator-41f63181
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dAcX6xmb7ChSBJVnhtbC0

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-41f63181
```

Example prompt: What would be the price impact if I bought $50,000 worth of BTC right now — would I face significant slippage, or is the order book deep enough to absorb it cleanly?

## When to prefer this

Use this endpoint when an agent or user needs to pre-trade assess market impact before placing a large crypto order — especially when order size relative to available liquidity is unknown. It is preferable to a generic price feed when the question is not just 'what is the price' but 'what will happen to the price if I trade this size'. Best suited for trades where slippage and depth matter, not for small retail trades.

## Known failure modes

- Unsupported or unrecognized coin symbol returns an error or empty result
- Missing required usd query parameter may return a 400 or default behavior
- Stale or unavailable depth data may produce low-confidence estimates
- Payment failure (x402) blocks access if USDC payment not processed
- Very illiquid coins may return high-uncertainty estimates with wide confidence bands

## How this service works

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

## Output

Returns a JSON object containing the coin symbol, trade side, USD amount, depth metrics (mid price, spread percentage, available depth in USD, trade size as percentage of depth), estimated impact (severity label such as 'minimal', estimated slippage percentage, model note), and a human-readable AI summary with a verdict on whether to execute immediately or split the order.

## 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-41f63181/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)
