# CRYPTYX Composite Signal Breadth

> CRYPTYX Composite Signal Breadth is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns aggregate bullish/bearish breadth counts across digital asset signal classes for a specified forward return horizon and score threshold

## Facts

- Endpoint: GET https://cryptyx.ai/api/signals/composite/breadth
- 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-composite-signal-breadth-93440939
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_slFr8gTK2utw7lariW4qP

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-composite-signal-breadth-93440939
```

Example prompt: Pull the CRYPTYX composite breadth reading for a 30-day horizon with a signal threshold of 0.6 — I want to see how many asset classes are flashing bullish vs bearish right now.

## When to prefer this

Use this endpoint when you need a macro-level view of crypto market breadth — how many assets are bullish vs bearish across asset classes — rather than per-asset signal details. Ideal for top-down market regime detection, risk-on/risk-off assessment, or portfolio tilt decisions based on aggregate signal breadth.

## Known failure modes

- Invalid horizon value (must be 7d, 14d, or 30d) returns 400 error
- Threshold outside 0-1 range returns validation error
- No signals available for the requested threshold returns empty breadth array
- Service unavailable or data pipeline delay returns 503

## How this service works

Universe-wide composite breadth at one horizon — bullish/bearish/neutral counts and percentages across 200+ assets, sliced by regime, with full per-asset stance list. Is this rally broad or concentrated?

## Output

Returns a breadth array broken down by asset class (e.g. TR) with bullish count, bearish count, and net signal per class, plus total_bullish and total_bearish counts across all assets in the universe for the specified horizon and threshold.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "horizon": {
   "type": "string",
   "description": "Forward return horizon: 7d, 14d, or 30d"
  },
  "threshold": {
   "type": "number",
   "description": "Score threshold (0-1)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "breadth": [
  {
   "net": 7,
   "class": "TR",
   "bearish": 8,
   "bullish": 15
  }
 ],
 "total_bearish": 57,
 "total_bullish": 62
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-composite-signal-breadth-93440939/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)
