# CRYPTYX Market Pulse Divergences

> CRYPTYX Market Pulse Divergences 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 cross-metric divergences between asset signal classes (e.g. trend vs. volatility) across configurable time horizons for digital assets

## Facts

- Endpoint: GET https://cryptyx.ai/api/market-pulse/divergences
- 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-market-pulse-divergences-158d846c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SIExXS3PHqFttFajy_Hui

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-market-pulse-divergences-158d846c
```

Example prompt: Pull the latest CRYPTYX market-pulse divergences across 1h,4h,1d horizons and show me which assets have the widest spread between their trend and volatility signal classes right now.

## When to prefer this

Use this endpoint when you need to detect dislocations or conflicts between different signal classes (e.g. trend vs. volatility) across multiple time horizons for crypto assets — particularly useful for identifying assets where metrics are sending contradictory signals, which may precede significant price moves or regime changes.

## Known failure modes

- Invalid or malformed horizons string returns a 400 error
- Unknown horizon values (e.g. unsupported timeframes) may return empty divergence arrays
- Payment failure via x402 protocol returns 402 Payment Required
- Rate limiting or quota exhaustion returns 429 Too Many Requests
- Service unavailability during market data feed disruption returns 503

## How this service works

Universe-aggregate cross-factor divergence alerts — Ignition (TR+VOL extreme), Capitulation (FLOW+TR collapse), and Distribution (outflows with trend). Severity-ranked by horizon for top-down scanning. Runs across 200+ digital assets — BTC, ETH, SOL, top-cap + long-tail coverage.

## Output

Returns an array of divergence objects, each containing the asset ticker (e.g. BTC), a numeric spread value representing the magnitude of divergence, and two signal class labels (class_a and class_b) indicating which metric categories are diverging — e.g. trend (TR) vs. volatility (VOL).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "horizons": {
   "type": "string",
   "description": "Comma-separated horizons"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "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-market-pulse-divergences-158d846c/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)
