Per-asset triggered signal feed on the latest day — every active signal with z, confidence
Per-asset triggered signal feed on the latest day — every active signal with z, confidence, IC, hit rate, regime accuracy, and full health grading. Per-signal walk-forward IS/OOS block. Live firing panel with regime context. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).
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": {
"limit": 0,
"symbol": ""
},
"type": "http"
},
"output": {
"example": {
"asof_day": "2026-06-18",
"high_grade": 2,
"meta": {
"ic_context": "cross_sectional",
"note": "Signal grades and IC are cross-sectional (universe-wide ranking power). Per-asset signal evaluation is not yet available."
},
"ok": true,
"regime": "consolidation",
"regime_confidence": 0.73,
"signals": [
{
"class": "TR",
"confidence": 0.78,
"description": "Sustained directional momentum over 14-day window",
"health_grade": "A",
"hit_rate": 0.58,
"horizon": "14D",
"ic": 0.064,
"ir": 0.42,
"is_anti_predictive": false,
"name": "Trend Momentum Continuation 14D",
"operational_grade": "A",
"predictive_grade": "A",
"regime_accuracy": 0.71,
"signal_id": "TR_MOMO_CONT_14D",
"value": 0.0142,
"walk_forward": {
"asof_day": "2026-06-20",
"ic_delta": -0.0453,
"is_hit_rate": 0.572,
"is_ic": 0.0941,
"is_n_obs": 18900,
"is_n_triggers": 612,
"oos_hit_rate": 0.531,
"oos_ic": 0.0488,
"oos_n_obs": 8100,
"oos_n_triggers": 184,
"overfit_ratio": 0.519,
"reliability_grade": "green",
"split_pct": 0.7,
"window_days": 180
},
"z": 2.31
},
{
"class": "VOL",
"confidence": 0.69,
"description": "7D realized vol compressed vs 30D baseline",
"health_grade": "B",
"hit_rate": 0.55,
"horizon": "7D",
"ic": 0.041,
"ir": 0.29,
"is_anti_predictive": false,
"name": "Volatility Compression 7v30",
"operational_grade": "A",
"predictive_grade": "B",
"regime_accuracy": 0.64,
"signal_id": "VOL_COMPRESSION_7v30",
"value": 0.62,
"z": -1.84
},
{
"class": "FLOW",
"confidence": 0.61,
"description": "Spot deviation from volume-weighted average",
"health_grade": "C",
"hit_rate": 0.53,
"horizon": "7D",
"ic": 0.028,
"ir": 0.21,
"is_anti_predictive": false,
"name": "VWAP Deviation 7D",
"operational_grade": "B",
"predictive_grade": "C",
"regime_accuracy": 0.58,
"signal_id": "FLOW_VWAP_DEV_7D",
"value": 0.018,
"z": 1.62
},
{
"class": "TR",
"confidence": 0.54,
"description": "Long-horizon trend strength",
"health_grade": "C",
"hit_rate": 0.52,
"horizon": "180D",
"ic": 0.019,
"ir": 0.15,
"is_anti_predictive": false,
"name": "Rate of Change 180D",
"operational_grade": "C",
"predictive_grade": "C",
"regime_accuracy": 0.55,
"signal_id": "TR_ROC_180D",
"value": 0.42,
"z": 1.21
}
],
"symbol": "BTC",
"total": 4
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Max signals to return, 1-50, default 20",
"type": "number"
},
"symbol": {
"description": "Asset ticker, uppercased server-side (e.g. BTC, ETH, SOL)",
"type": "string"
}
},
"required": [
"symbol"
],
"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/asset/active-signals" # -> 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/asset/active-signals");
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/asset/active-signals")
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/4364.json, and this resource appears in /discovery/resources and /discovery/search.