# CRYPTYX Market Pulse Regime Detection

> CRYPTYX Market Pulse Regime Detection is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current market regime classifications (expansion, consolidation, etc.) with confidence scores for digital assets over a configurable lookback and forward horizon

## Facts

- Endpoint: GET https://cryptyx.ai/api/market-pulse/regime
- 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/cryptyx-market-pulse-regime-detection-147a5865
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i8eITadVyob2SU4JFS-D5

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 cryptyx-market-pulse-regime-detection-147a5865
```

Example prompt: Using CRYPTYX, what market regime is Bitcoin in right now — look back over the last 30 days and give me a 30-day forward horizon outlook with confidence scores?

## When to prefer this

Use this endpoint when you need a structured, confidence-weighted regime classification across multiple digital assets simultaneously — particularly when you want to know whether the broader market is in expansion or consolidation before making allocation decisions. Prefer this over raw price feeds or sentiment APIs when you need a synthesized, model-driven regime signal rather than raw data.

## Known failure modes

- Invalid horizon value (not 7d, 14d, or 30d) returns a 400 error
- Lookback days too large or negative returns a validation error
- Payment not included or insufficient USDC causes a 402 Payment Required response
- No asset data available for the requested lookback window may return empty regimes array
- Service unavailable or model computation timeout returns a 503 error

## How this service works

Multi-horizon macro regime synthesis from 1d through 365d — regime label, confidence, cross-class state, breadth, horizon alignment. Read full risk-on/off posture in one call. Slim mode drops blobs for timelines. Runs across 200+ digital assets — BTC, ETH, SOL, top-cap + long-tail coverage.

## Output

An array of per-asset regime objects each containing the asset ticker, regime label (e.g. expansion, consolidation), and a confidence score between 0 and 1, plus a summary object showing the count of assets in each regime state.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "days": {
   "type": "number",
   "description": "Lookback days"
  },
  "horizon": {
   "type": "string",
   "description": "Forward return horizon: 7d, 14d, or 30d"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "regimes": [
  {
   "asset": "BTC",
   "regime": "expansion",
   "confidence": 0.65
  }
 ],
 "summary": {
  "expansion": 45,
  "consolidation": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-market-pulse-regime-detection-147a5865/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptyx.ai](https://www.zero.xyz/host/cryptyx.ai/llms.txt)
