# Carbon Cashmere Market Regime History API

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

Returns a time series of market regime classifications (accumulation, markup, distribution, markdown, high_volatility, crisis) with snapshot history and transition events for crypto markets

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/history/regime
- Price: $0.02/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-8e730b20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UIhE6J8elxXmNVqwZuQ1B

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-8e730b20
```

Example prompt: What market regime are we in right now, and can you show me the regime history and transitions for the last 30 days — I want to see how much time was spent in each phase like accumulation, markup, distribution, or crisis?

## When to prefer this

Use this endpoint when you need structured, ML-derived market regime classifications over time rather than raw price or indicator data. Ideal for regime-aware strategy switching, macro-regime backtesting, and market-structure monitoring. Prefer over generic price feeds when you need categorical regime labels (accumulation through crisis) and transition calendars with percentage breakdowns.

## Known failure modes

- Invalid days parameter (outside 1-90 range) returns error
- Missing or malformed query parameters return 400-level errors
- Payment not provided or insufficient USDC (x402 payment required at $0.02 per call)
- Downstream ML detector outage may cause stale or empty series
- Rate limiting if called too frequently without proper payment headers

## How this service works

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

## Output

Returns current_regime label (one of accumulation, markup, distribution, markdown, high_volatility, crisis), a time series of 15-minute regime snapshots over the requested window, distribution_pct showing how much time was spent in each regime, and optionally a compact list of transition events when transitions_only=true is used.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "days": 30,
  "samples": 2880,
  "current_regime": "markup",
  "distribution_pct": {
   "markup": 35.2,
   "markdown": 7.8,
   "accumulation": 16.5,
   "distribution": 22.1,
   "high_volatility": 18.4
  }
 }
}
```

## More

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