# Cryptyx Cross-Factor Divergence Flags

> Cryptyx Cross-Factor Divergence Flags 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-13).

Returns assets where different factor classes (e.g. trend vs volatility) disagree in direction, along with the spread magnitude between them, across configurable time horizons.

## Facts

- Endpoint: GET https://www.cryptyx.ai/api/market-pulse/divergences
- 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-cross-factor-divergence-flags-c7453a77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UMBuvijSiiluOSZpOPPtp

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-cross-factor-divergence-flags-c7453a77
```

Example prompt: Show me all crypto assets right now where trend and volatility factors are pointing in opposite directions — specifically looking for large spread divergences — check across the 7d and 14d horizons.

## When to prefer this

Use this endpoint when you want to surface crypto assets where factor classes are in disagreement — a precondition for mean-reversion or breakout setups. Prefer this over the full factor matrix endpoint when you specifically need divergence detection rather than raw scores, and over the regime endpoint when you care about cross-factor conflict rather than macro classification.

## Known failure modes

- Invalid or unsupported horizon value returns 400 bad request
- No divergences found for the requested horizons returns empty divergences array
- Payment not provided or insufficient USDC returns 402 payment required
- Service temporarily unavailable returns 503
- Rate limit exceeded returns 429

## How this service works

CRYPTYX | institutional-grade crypto intelligence: 150+ signals, 440+ metrics, 200+ assets. | Universe-aggregate cross-factor-class divergence detector. Averages t_scores across ~200 active assets from metrics.factor_scores at the latest asof_day per horizon (excludes OPT), then runs three hardcoded patterns over TR/VOL/FLOW only: Ignition (TR+VOL extreme), Capitulation (FLOW+TR collapsed), Distribution (outflows while trend holds). Live path uses fixed thresholds, not the adaptive percentile engine. Returns ok, asof_day, total_alerts, by_type counts, by_horizon grouping, ranked alerts array (severity-weighted by horizon), durationMs. Market-wide regime read, not per-asset; use for top-down inflection scanning.

## Output

A list of assets exhibiting cross-factor-class divergence, each with the two conflicting factor classes (e.g. TR vs VOL), the spread magnitude between them, and optionally the directional stance of each class. Results are filtered by the requested time horizons.

## 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": {
      "horizons": {
       "type": "string",
       "description": "Comma-separated subset of 1d,7d,14d,30d,60d,90d,180d,365d. Invalid values silently dropped. Default: all 8."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "example": {
  "divergences": [
   {
    "asset": "BTC",
    "spread": 1.2,
    "class_a": "TR",
    "class_b": "VOL"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-cross-factor-divergence-flags-c7453a77/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)
