The most information-dense endpoint on the surface — 3 MB / 149K leaves per call
The most information-dense endpoint on the surface — 3 MB / 149K leaves per call. Latest N days of master composite scores per (asset × horizon) with ranks + per-class composite matrix + macro regime context + intraday micro-regime state, all in one call. Replaces 4 separate premium calls (composite/breadth + factor-cross-section + market-pulse/regime + one asset-scoped call). Priced at Trade Ideas tier ($0.10) to reflect payload size + compute; still 40% cheaper than fetching the equivalent data via 4 separate premium endpoints. Runs across 200+ digital assets — BTC, ETH, SOL, top-cap + long-tail coverage.
Provider
cryptyx.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0cD2c9724F185a029101b4AEACf3F114415c394f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"days": 0,
"horizon": "",
"include_stablecoins": false
},
"type": "http"
},
"output": {
"example": {
"asof_day": "2026-06-18",
"classes": [
{
"asset": "BTC",
"class": "TR",
"horizon": "14d",
"meta": {
"top_signal": "TR_MOMO_CONT_14D"
},
"n_signals": 18,
"n_triggered": 11,
"score": 0.7204
},
{
"asset": "BTC",
"class": "VOL",
"horizon": "14d",
"meta": {
"top_signal": "VOL_COMPRESSION_7v30"
},
"n_signals": 12,
"n_triggered": 4,
"score": 0.314
},
{
"asset": "BTC",
"class": "FLOW",
"horizon": "14d",
"meta": {
"top_signal": "FLOW_VWAP_DEV_7D"
},
"n_signals": 9,
"n_triggered": 5,
"score": 0.555
}
],
"days": 1,
"horizon": "all",
"master": [
{
"asof_day": "2026-06-18",
"asset": "BTC",
"horizon": "14d",
"meta": {
"weight_set": "ic_v3"
},
"n_classes": 8,
"rank": 1,
"score": 0.6421
},
{
"asof_day": "2026-06-18",
"asset": "ETH",
"horizon": "14d",
"meta": {
"weight_set": "ic_v3"
},
"n_classes": 8,
"rank": 2,
"score": 0.5118
},
{
"asof_day": "2026-06-18",
"asset": "SOL",
"horizon": "7d",
"meta": {
"weight_set": "ic_v3"
},
"n_classes": 7,
"rank": 3,
"score": 0.4032
}
],
"microRegimes": [
{
"asset": "BTC",
"bars_in_regime": 14,
"confidence": 0.81,
"regime_id": 1,
"regime_type": "vol"
},
{
"asset": "BTC",
"bars_in_regime": 8,
"confidence": 0.69,
"regime_id": 3,
"regime_type": "trend"
},
{
"asset": "ETH",
"bars_in_regime": 6,
"confidence": 0.55,
"regime_id": 2,
"regime_type": "vol"
}
],
"ok": true,
"regimes": [
{
"asset": "BTC",
"primary_confidence": 0.74,
"primary_regime_id": 2,
"resolution_mode": "dominant",
"secondary_confidence": 0.21,
"secondary_regime_id": 5
},
{
"asset": "ETH",
"primary_confidence": 0.66,
"primary_regime_id": 2,
"resolution_mode": "dominant",
"secondary_confidence": 0.28,
"secondary_regime_id": 3
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"days": {
"description": "Lookback days for master composite history, 1-30 (default 1)",
"type": "number"
},
"horizon": {
"description": "Filter to a single horizon: 7d, 14d, or 30d (omit for all)",
"type": "string"
},
"include_stablecoins": {
"description": "Include stablecoin assets (default false)",
"type": "boolean"
}
},
"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/heatmap" # -> 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/heatmap");
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/heatmap")
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/4378.json, and this resource appears in /discovery/resources and /discovery/search.