# Carbon Cashmere Recent Crypto Events Feed

> Carbon Cashmere Recent Crypto Events Feed is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.05/call, status down (last checked 2026-09-14).

Returns a recent polling-based event feed aggregating whale transactions, market regime changes, funding extremes, price spikes, and ML anomaly alerts across crypto assets

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/events/recent
- Price: $0.05/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-6d699c62
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KV8OcqBKXviqyLDtqxwCv

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-6d699c62
```

Example prompt: Check the Carbon Cashmere events feed for any whale transactions, price spikes, or ML anomaly alerts on BTC in the last 60 minutes, filtering for high severity events only.

## When to prefer this

Use this endpoint when you need a unified, aggregated feed of significant crypto market events (whale activity, regime shifts, funding extremes, price spikes, ML anomalies) without maintaining a persistent WebSocket or webhook connection. Ideal for periodic polling workflows, agent-based monitoring loops, or building event-driven alerts on a 1-5 minute cadence without push infrastructure.

## Known failure modes

- Invalid event type filter returns 400 or empty results
- Window parameter out of range (>1440 min) causes error
- Rate limiting if polled too frequently (below 60s cache window)
- No events returned if no qualifying events fired in the requested window
- Unknown coin filter silently returns empty results

## How this service works

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

## Output

A list of recent crypto market events from the past N minutes (up to 1440), each tagged with event type (whale_tx, regime_change, funding_extreme, price_spike, anomaly_fired), coin, severity, and timestamp. Results are filtered by the requested event types and coins.

## 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."
  },
  "events": [
   {
    "ts": "2026-04-22T18:00:00Z",
    "coin": "BTC",
    "type": "whale_tx",
    "payload": {
     "rbf": false,
     "total_btc": 1250.5
    },
    "severity": "high"
   },
   {
    "ts": "2026-04-22T17:45:00Z",
    "coin": "BTC",
    "type": "funding_extreme",
    "payload": {
     "z_score_30d": 2.3
    },
    "severity": "medium"
   }
  ],
  "filters": {
   "coins": null,
   "limit": 100,
   "min_whale_btc": 100,
   "price_spike_pct": 3,
   "funding_z_threshold": 2
  },
  "total_events": 12,
  "counts_by_type": {
   "whale_tx": 8,
   "price_spike": 2,
   "anomaly_fired": 0,
   "regime_change": 0,
   "funding_extreme": 2
  },
  "window_minutes": 60,
  "types_requested": [
   "whale_tx",
   "regime_change",
   "funding_extreme",
   "price_spike",
   "anomaly_fired"
  ]
 }
}
```

## More

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