# Carbon & Cashmere Signal API – SOL Decision Endpoint

> Carbon & Cashmere Signal API – SOL Decision Endpoint is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns real-time price, ML trading signal, market regime, funding rate, and conviction score for Solana (SOL)

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/decision/SOL
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-signal-api-sol-decision-endpoint-31e8cfb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5Ql5-qhVbKnYeBAk5Elkv

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-sol-decision-endpoint-31e8cfb1
```

Example prompt: What's the current Carbon & Cashmere signal for SOL — give me the conviction score, market regime, and whether the ML model says long or short right now.

## When to prefer this

Use this endpoint when you need a fast, single-call, opinionated trading signal for SOL that combines price data, ML ensemble direction, market regime classification, and conviction scoring into one response. Prefer it over raw price feeds when you need actionable intelligence rather than just a quote, and over broader bundle endpoints when you only need SOL and want to minimize cost per call.

## Known failure modes

- Coin not tracked — returns 404 or empty result if the symbol is unsupported
- Stale data — market data may lag during exchange outages or low liquidity
- Payment failure — x402 micropayment not processed, returns 402 Payment Required
- Rate limiting — too many calls in a short window returns 429
- Network timeout — upstream data source unavailable returns 503

## How this service works

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

## Output

A JSON object containing SOL's current USD price and 24h change, market regime state (e.g. markup/markdown), perpetual funding rate, ML ensemble signal direction and probability, a conviction score out of 100 with directional bias (long/short), and a human-readable recommendation sentence summarizing all of the above.

## 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/carbon-cashmere-signal-api-sol-decision-endpoint-31e8cfb1/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)
