Universe-wide composite breadth at one horizon — bullish/bearish/neutral counts and percen
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?
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-05
updated
Provider
cryptyx.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0cD2c9724F185a029101b4AEACf3F114415c394f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"day": "2026-06-18",
"horizon": "7d",
"threshold": 0.05
},
"type": "http"
},
"output": {
"example": {
"asof_day": "2026-06-18",
"assets": [
{
"asset": "BTC",
"rank": 1,
"regime": "EXP_HV_HF",
"regime_confidence": 0.712,
"score": 0.4231,
"stance": "bullish"
},
{
"asset": "ETH",
"rank": 2,
"regime": "EXP_HV_HF",
"regime_confidence": 0.684,
"score": 0.3845,
"stance": "bullish"
},
{
"asset": "SOL",
"rank": 8,
"regime": "EXP_HV_HF",
"regime_confidence": 0.591,
"score": 0.1924,
"stance": "bullish"
}
],
"breadth": {
"bearish": 64,
"bearish_pct": 32.3,
"bullish": 72,
"bullish_pct": 36.4,
"neutral": 62,
"neutral_pct": 31.3,
"total": 198
},
"horizon": "7d",
"micro_summary": {
"flow": {
"ACCUM": 42,
"DISTRIB": 35,
"NEUTRAL": 121
},
"volatility": {
"COMPRESSED": 88,
"EXPANDING": 56,
"STABLE": 54
}
},
"ok": true,
"regime_breakdown": {
"CON_LV_LF": {
"bearish": 31,
"bullish": 6,
"neutral": 14,
"total": 51
},
"EXP_HV_HF": {
"bearish": 9,
"bullish": 28,
"neutral": 11,
"total": 48
},
"UNCLASSIFIED": {
"bearish": 7,
"bullish": 4,
"neutral": 9,
"total": 20
}
},
"threshold": 0.05
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"day": {
"description": "Optional asof_day in YYYY-MM-DD format. Defaults to latest available.",
"example": "2026-06-18",
"type": "string"
},
"horizon": {
"description": "Composite horizon (default 7d)",
"enum": [
"7d",
"14d",
"30d"
],
"type": "string"
},
"threshold": {
"description": "Score threshold for bullish/bearish classification, 0-1 (default 0.05)",
"example": 0.05,
"type": "number"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://cryptyx.ai/api/signals/composite/breadth" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://cryptyx.ai/api/signals/composite/breadth");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://cryptyx.ai/api/signals/composite/breadth")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4377.json, and this resource appears in /discovery/resources and /discovery/search.