# CRYPTYX Asset Regime Context

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

Returns the current market regime classification (e.g. expansion, contraction) and confidence score for a given digital asset symbol

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset/regime-context
- Price: $0.05/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-context-f60bb251
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QMLsWy-ihP7UXpXF0URnZ

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-context-f60bb251
```

Example prompt: What market regime is Bitcoin currently in — is it expansion, contraction, or something else — and how confident is CRYPTYX in that classification?

## When to prefer this

Use this endpoint when you need a macro-level regime classification for a specific digital asset — especially useful for portfolio context, risk framing, or strategy selection. Prefer this over raw price feeds or sentiment APIs when you need a structured signal about the current market cycle phase with a confidence estimate.

## Known failure modes

- Unknown or unsupported asset symbol returns an error or empty result
- Payment not processed correctly via x402 protocol results in 402 response
- Stale or low-confidence data may return confidence scores near 0.5 with ambiguous regime labels
- Invalid or missing 'symbol' parameter returns a 400-level error

## How this service works

Per-asset macro regime context — current regime id, confidence, days-in-regime streak, conditional forward-return stats at 1d/7d/14d/30d, and top historical regime transitions. Grounds sizing in what historically happens next. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns a JSON object with the queried asset symbol, a regime label (e.g. 'expansion', 'contraction'), and a confidence score between 0 and 1 indicating certainty of the regime classification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Asset symbol"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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