# Cryptyx Market Pulse Regime Distribution

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

Returns macro regime distribution (expansion/consolidation/contraction) across the full ~200-asset crypto universe, with per-asset regime labels, confidence scores, and aggregate summary counts.

## Facts

- Endpoint: GET https://www.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-distribution-bae55fb2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_53oXP7CRXuOUyMnWe5tuL

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-distribution-bae55fb2
```

Example prompt: Give me the current macro regime distribution across the full crypto universe — how many assets are in expansion, consolidation, and contraction — using a 30-day lookback and a 14d forward horizon.

## When to prefer this

Use this endpoint when you need a single call to assess the breadth of risk-on/risk-off positioning across the entire crypto universe, rather than checking regimes asset-by-asset. Ideal for portfolio-level regime filters, market breadth dashboards, and pre-trade macro checks. Prefer this over the single-asset regime endpoint when you need aggregate counts or want to scan all assets simultaneously.

## Known failure modes

- Invalid horizon value (not 7d/14d/30d) returns 400 bad request
- Payment not included or insufficient USDC returns 402 Payment Required
- Service unavailable or data pipeline delay returns 503
- Invalid days parameter type returns 400 validation error

## How this service works

CRYPTYX | institutional-grade crypto intelligence: 150+ signals, 440+ metrics, 200+ assets. | Macro-regime synthesis from analytics.macro_regime_day — NOT per-asset. Returns ok, asof_day, current (object keyed by horizon: 1d/7d/14d/30d/60d/90d/180d/365d, each with regime_label, regime_confidence, cross_class_state, breadth JSONB, horizon_alignment JSONB, n_assets, meta JSONB), history (raw rows over lookback window), count, durationMs. Built on ~200 assets, 8 factor classes (CORR/EFF/FLOW/FUT/OB/OPT/TR/VOL). Filter to one horizon via horizon param; slim=true drops JSONB blobs for timeline use. For per-asset regimes hit /api/asset-regimes. Read multi-horizon risk-on/off posture in one call.

## Output

A JSON object with a 'regimes' array listing each asset with its current regime label (expansion/consolidation/contraction) and confidence score, plus a 'summary' object with aggregate counts per regime across the full ~200-asset universe.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "days": {
       "type": "number",
       "description": "Lookback window in days (1-1900, default 30)"
      },
      "slim": {
       "type": "boolean",
       "description": "If true, omits breadth/horizon_alignment/meta JSONB blobs — returns only regime_label + regime_confidence per row (default false)"
      },
      "horizon": {
       "type": "string",
       "description": "Filter to one horizon: 1d, 7d, 14d, 30d, 60d, 90d, 180d, 365d (optional — omit to return all horizons)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "example": {
  "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-distribution-bae55fb2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.cryptyx.ai](https://www.zero.xyz/host/www.cryptyx.ai/llms.txt)
