# Cryptyx AI Composite Factor Intensity Heatmap

> Cryptyx AI Composite Factor Intensity Heatmap is a paid API for AI agents from www.cryptyx.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a normalized 0-1 intensity grid showing how strongly each factor class is firing across all tracked crypto assets over a configurable lookback window.

## Facts

- Endpoint: GET https://www.cryptyx.ai/api/signals/composite/heatmap
- 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-ai-composite-factor-intensity-heatmap-9c13e8b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S-lViriG0eAPcWptqaIHm

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-composite-factor-intensity-heatmap-9c13e8b7
```

Example prompt: Pull the Cryptyx composite factor intensity heatmap for the last 14 days with a 7d forward horizon — I want to see which factor classes are running hot across the most assets so I can tell if a regime is forming.

## When to prefer this

Use this endpoint when you need a broad, cross-asset view of factor concentration rather than a single-asset deep-dive. It is ideal for regime detection workflows where you want to see if one factor class (e.g. trend or momentum) is heating up simultaneously across many assets, signaling a macro shift. Prefer this over the single-asset signal endpoints when your goal is portfolio-level factor exposure monitoring or regime alerting rather than trade-level signal generation.

## Known failure modes

- days parameter exceeds 30 — API rejects with validation error
- invalid horizon value (not 7d, 14d, or 30d) — returns 400 bad request
- payment not included or insufficient — returns 402 Payment Required
- no data available for requested lookback window — empty heatmap array returned
- service downtime or rate limit — 503 or 429 response

## How this service works

CRYPTYX | institutional-grade crypto intelligence: 150+ signals, 440+ metrics, 200+ assets. | Bundles four arrays for the latest N days (max 30): master composite scores per (asset, horizon) with rank, n_classes, meta; latest-day class composites per (asset, class) with n_signals, n_triggered, meta; latest-day macro regime context (primary/secondary regime_id, confidence, resolution_mode); current intraday micro_regime state per asset and regime_type. Drives multi-horizon factor heatmaps. Scores are raw, 4 decimals — not 0-1 normalized.

## Output

A JSON array of heatmap rows, each containing an asset symbol (e.g. BTC), a factor class label (e.g. TR for trend), and a normalized intensity score between 0 and 1. The full grid covers approximately 200 assets across all factor classes, allowing visual or programmatic identification of factor concentration and emerging regime signals.

## 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": {
      "days": {
       "type": "number",
       "description": "Lookback days for master composite history, 1-30 (default 1)"
      },
      "horizon": {
       "type": "string",
       "description": "Filter to a single horizon: 7d, 14d, or 30d (omit for all)"
      },
      "include_stablecoins": {
       "type": "boolean",
       "description": "Include stablecoin assets (default false)"
      }
     }
    }
   },
   "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-composite-factor-intensity-heatmap-9c13e8b7/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)
