# Cryptyx Asset Regime State with Macro Divergence

> Cryptyx Asset Regime State with Macro Divergence is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns per-asset regime state across all 8 time horizons plus divergence flags comparing the asset's regime to the broader crypto market at each timescale.

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset/regime
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-asset-regime-state-with-macro-divergence-a51c7f89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QFkRBS2GvDm7gINCAK4_O

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-state-with-macro-divergence-a51c7f89
```

Example prompt: What is the regime state for ETH across all 8 horizons right now, and is it diverging from the broader crypto market? Use a 7-day lookback window.

## When to prefer this

Prefer this endpoint over /asset-regimes when you need not just the raw per-asset regime state but also the asset-vs-market comparison and divergence flags — i.e., when you want to know whether an asset is trending in-step or out-of-step with the broader crypto market at each of the 8 timescales. Use /asset-regimes for simpler per-asset regime lookups without macro comparison context.

## Known failure modes

- Missing required 'symbol' query parameter returns a 400 error
- Invalid or unrecognized asset symbol returns empty or error response
- Horizon filter value outside the accepted enum (1d, 7d, 14d, 30d, 60d, 90d, 180d, 365d) may return an error
- Days value outside the 1-90 range may be rejected or clamped
- Insufficient payment (x402 protocol) returns 402 Payment Required
- Service unavailability returns 5xx error

## How this service works

Per-asset regime state across all 8 horizons plus divergence flags vs. macro. Enhanced view over /asset-regimes: adds asset-vs-market comparison and per-horizon divergence indicators — gates whether the asset is in-step or out-of-step with the broader market at each timescale. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns a JSON object containing per-asset regime labels for each of the 8 time horizons (1d, 7d, 14d, 30d, 60d, 90d, 180d, 365d), along with asset-vs-market comparison data and boolean or scored divergence flags indicating whether the asset is in-step or out-of-step with the broader macro regime at each timescale.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "days": {
       "type": "number",
       "description": "Lookback window (1-90, default 1)"
      },
      "symbol": {
       "type": "string",
       "description": "Asset symbol (uppercased server-side)"
      },
      "horizon": {
       "type": "string",
       "description": "Optional horizon filter (1d, 7d, 14d, 30d, 60d, 90d, 180d, 365d)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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