# Carbon & Cashmere AI Price Impact – SOL

> Carbon & Cashmere AI Price Impact – SOL 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-15).

Returns an AI-generated indicative price-impact estimate for a hypothetical SOL trade, including slippage, depth metrics, and an execution verdict.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/ai/price-impact/SOL
- Price: $0.02/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-ai-price-impact-sol-9d4ec6bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7mIb6tnum4znKbwKvxUsO

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-sol-9d4ec6bd
```

Example prompt: What's the estimated price impact and slippage if I buy $50,000 worth of SOL right now — give me a full depth breakdown and tell me whether I should execute immediately or split the order.

## When to prefer this

Use this endpoint when you need a fast, AI-narrated price-impact assessment for SOL specifically — particularly when a user wants a plain-English execution verdict alongside raw depth metrics. Prefer this over generic order book APIs when you need the 'should I split this trade?' recommendation layer baked in. Best for agentic trading assistants that need to justify execution decisions conversationally.

## Known failure modes

- Invalid or unsupported coin symbol returns an error
- Missing or invalid usd query parameter returns a 400-level error
- Upstream liquidity data unavailable causes stale or failed response
- Payment not authorized via x402 protocol returns 402 Payment Required
- Extreme market conditions may yield indicative-only estimates with high 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, trade side, a natural-language AI summary with execution verdict, the USD amount analyzed, depth metrics (mid price, spread %, available depth in USD, trade size as % of depth), and an estimated impact object showing model type, severity label (e.g. 'minimal'), 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-sol-9d4ec6bd/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)
