# Carbon & Cashmere Anomaly Detection API – SOL

> Carbon & Cashmere Anomaly Detection API – SOL is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Detects statistical anomalies in Solana (SOL) crypto market data using STL decomposition, z-score analysis, and isolation forest ML methods, returning an anomaly flag, score, severity, and top drivers.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/anomaly/SOL
- Price: $0.01/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-anomaly-detection-api-sol-195a0a6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bCqiykvhRlmxbQ202y2lZ

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-anomaly-detection-api-sol-195a0a6d
```

Example prompt: Is Solana showing any unusual market behavior right now? Give me the anomaly score, severity, and what's driving it — volume spikes, funding rates, or price returns.

## When to prefer this

Use this endpoint when you need a multi-method statistical anomaly signal specifically for SOL, combining time-series decomposition (STL), z-score across multiple market dimensions, and ML isolation forest in a single call. Prefer this over generic price feeds when you need an actionable anomaly flag with severity and driver attribution rather than raw price data.

## Known failure modes

- Invalid or unsupported symbol returns an error response
- Upstream market data unavailability may cause stale or missing results
- Payment failure (x402) results in 402 Payment Required with no data returned
- Network timeout if data pipeline is delayed

## How this service works

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

## Output

Returns a JSON object with an anomaly_flag (boolean), anomaly_score (0–1), severity label (e.g. 'elevated'), and method-level breakdowns: STL residual z-score and seasonal strength, z-scores for volume/funding/returns, and an isolation forest outlier score. Also includes top_drivers list showing which features contribute most to the anomaly, plus a disclaimer that data is informational only.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "_meta": {
   "disclaimer": "Informational research data only — not investment advice."
  },
  "symbol": "BTC",
  "methods": {
   "stl": {
    "residual_z": 2.1,
    "seasonal_strength": 0.34
   },
   "zscore": {
    "volume_z": 3.1,
    "funding_z": -1.2,
    "returns_z": 2.8
   },
   "isoforest": {
    "score": -0.18,
    "is_outlier": true
   }
  },
  "severity": "elevated",
  "top_drivers": [
   {
    "value": 3.1,
    "feature": "volume_z",
    "contribution": 0.42
   }
  ],
  "anomaly_flag": true,
  "anomaly_score": 0.73
 }
}
```

## More

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