# Cryptyx AI Market-Pulse Regime Divergence (Single Asset)

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

Returns a regime cascade divergence analysis for one crypto asset — showing how out-of-step it is with macro/market regime, with score delta, per-horizon breakdown, severity, and a plain-English interpretation.

## Facts

- Endpoint: GET https://cryptyx.ai/api/market-pulse/regime-divergence
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-market-pulse-regime-divergence-single-asset-26c63ec1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DdIhrvKMXmV02t5Aaqhui

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-ai-market-pulse-regime-divergence-single-asset-26c63ec1
```

Example prompt: Tell me how out-of-step ETH is with the broader market regime right now — I want the regime divergence score delta, how severe it is across time horizons, and a plain-English read on where ETH is misaligned with the macro.

## When to prefer this

Use this endpoint when you need a deep single-asset drill-down on regime divergence — specifically to understand how one crypto is positioned relative to the macro regime across multiple time horizons. Prefer this over /market-pulse/divergences when you already know which asset to investigate and want severity + horizon detail rather than a universe-wide scan.

## Known failure modes

- Unknown or unsupported asset symbol returns an error or empty result
- Missing asset param defaults to BTC — agent may get unintended results
- 402 Payment Required if x402 payment header is missing or insufficient
- Rate limiting or transient server errors on 5xx responses
- Stale or unavailable regime data may result in reduced-confidence scores

## How this service works

Market vs. asset regime cascade divergence for one symbol — score delta, per-horizon breakdown, severity, and one-line interpretation. Novel cross-asset positioning read: "where is this asset out-of-step with the macro?" Companion to /market-pulse/divergences (which scans the universe); this endpoint drills into one asset. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns a structured object containing the regime divergence score delta between the asset and the market, a per-horizon breakdown of that divergence, a severity classification, and a one-line human-readable interpretation of the cross-asset positioning misalignment.

## 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",
     "properties": {
      "asset": {
       "type": "string",
       "description": "Asset symbol (default BTC)"
      }
     }
    }
   },
   "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-ai-market-pulse-regime-divergence-single-asset-26c63ec1/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)
