# CRYPTYX Asset Regime Detection

> CRYPTYX Asset 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 the current market regime (e.g. expansion, contraction) with a confidence score for a given digital asset symbol

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset-regimes
- 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-asset-regime-detection-1a0b979a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TtFRPGYZKSX2pVAXngge1

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-asset-regime-detection-1a0b979a
```

Example prompt: What market regime is Bitcoin currently in — is it expansion or something else — and how confident is the signal?

## When to prefer this

Use this endpoint when you need a concise, confidence-scored market regime classification for a specific digital asset — especially useful for agents making trading, risk, or allocation decisions that require understanding the current macro cycle phase of BTC, ETH, SOL, or other supported assets.

## Known failure modes

- Invalid or unrecognized asset symbol returns an error or empty regime array
- Missing asset parameter causes a 400-level validation error
- Low confidence scores (near 0.5) indicate ambiguous regime conditions
- Service may return stale data during periods of low market signal clarity
- Payment failure via x402 protocol results in 402 response blocking data access

## How this service works

Per-asset macro regime classification with confidence — expansion, consolidation, or deleveraging. Includes secondary regime and resolution mode. Factor-derived from the nightly 04:15 UTC pipeline. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns a JSON object with an array of regime entries, each containing the asset symbol, a regime label (e.g. 'expansion'), and a confidence score between 0 and 1 indicating signal strength.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Asset symbol (e.g. BTC, ETH, SOL)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-asset-regime-detection-1a0b979a/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)
