# Carbon Cashmere ML Market Anomaly Log

> Carbon Cashmere ML Market Anomaly Log is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.01/call, status down (last checked 2026-09-14).

Retrieves a historical log of ML-detected crypto market anomalies with timestamps, symbols, severity levels, and feature vectors (RSI, MA distance, volume ratio, etc.)

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/history/anomalies
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-carbon-cashmere-de-2b43e24a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cHjBaxsS42ncmDvjWEi-d

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 api-carbon-cashmere-de-2b43e24a
```

Example prompt: Pull the ML anomaly log for BTC from carbon-cashmere and show me everything with severity 'high' or 'critical', including the RSI, volume ratio, and funding z-score features so I can understand what patterns triggered each alert.

## When to prefer this

Use this endpoint when you need historical ML-detected anomaly records with rich feature metadata for crypto markets — especially when you need to trace ML feature provenance, mine anomaly patterns, build alerting logic, or analyze what quantitative signals (RSI, volume ratio, funding z-score) drove a given anomaly classification. Prefer over generic price APIs when anomaly-centric, feature-rich data is the goal.

## Known failure modes

- Invalid symbol returns empty results or 404
- Unknown severity filter value returns 400 bad request
- No anomalies match the filter criteria — returns empty array
- Rate limiting or payment failure returns 402 or 429
- Service unavailable during data pipeline refresh — 503

## How this service works

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

## Output

A list of 340+ anomaly records spanning 48 days, each containing: timestamp, symbol, anomaly score, severity classification (low/medium/high/critical), a features dictionary with RSI, MA distance, volume ratio, volatility, price changes, liquidation ratio, and funding z-score, plus a natural-language description of the anomaly.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "days": 7,
  "count": 42,
  "anomalies": [
   {
    "ts": "2026-04-18T11:30:00Z",
    "score": -0.048,
    "symbol": "KAS",
    "severity": "low",
    "description": "KAS RSI überverkauft (11)."
   }
  ],
  "by_symbol": {
   "BTC": 8,
   "ETH": 6,
   "KAS": 15
  },
  "by_severity": {
   "low": 35,
   "medium": 7
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-carbon-cashmere-de-2b43e24a/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)
