Claude-narrated per-asset conviction thesis (3-5 sentences) plus an evidence pack — compos
Claude-narrated per-asset conviction thesis (3-5 sentences) plus an evidence pack — composite rank vs universe, returns and volatility, factor scores per class, top active signals, and top per-asset predictors. 4-hour cache. 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": {
"horizon": "",
"symbol": ""
},
"type": "http"
},
"output": {
"example": {
"asof_day": "2026-06-18",
"cache_hit": false,
"evidence": {
"active_signals": [
{
"class": "TR",
"confidence": 0.81,
"grade": "A",
"hit_rate": 0.63,
"ic": 0.27,
"name": "TR Momentum Continuation 14D",
"signal_id": "TR_MOMO_CONT_14D",
"z": 2.1
},
{
"class": "FLOW",
"confidence": 0.74,
"grade": "A",
"hit_rate": 0.61,
"ic": 0.22,
"name": "Flow VWAP Deviation 7D",
"signal_id": "FLOW_VWAP_DEV_7D",
"z": 1.85
},
{
"class": "VOL",
"confidence": 0.68,
"grade": "B",
"hit_rate": 0.58,
"ic": 0.18,
"name": "Vol Compression 7v30",
"signal_id": "VOL_COMPRESSION_7v30",
"z": 1.6
}
],
"active_signals_high_grade": 6,
"active_signals_total": 11,
"asof_day": "2026-06-18",
"composite": {
"rank": 1,
"rank_pct": 99.5,
"score": 0.42,
"score_delta": 0.07,
"score_yesterday": 0.35
},
"factors": [
{
"class": "CORR",
"t_band": "NEUTRAL",
"t_score_pct": 54.2
},
{
"class": "EFF",
"t_band": "BULL",
"t_score_pct": 71
},
{
"class": "FLOW",
"t_band": "BULL",
"t_score_pct": 83.4
},
{
"class": "FUT",
"t_band": "BULL",
"t_score_pct": 62.1
},
{
"class": "OB",
"t_band": "NEUTRAL",
"t_score_pct": 58.7
},
{
"class": "OPT",
"t_band": "NEUTRAL",
"t_score_pct": 49
},
{
"class": "TR",
"t_band": "STRONG_BULL",
"t_score_pct": 92
},
{
"class": "VOL",
"t_band": "NEUTRAL",
"t_score_pct": 37.5
}
],
"returns": {
"ret_1d": 0.018,
"ret_30d": 0.142,
"ret_7d": 0.064,
"vol_rv_30d": 0.41
},
"symbol": "BTC",
"top_ts_metrics": [
{
"class": "TR",
"cs_grade": "C",
"cs_ic": 0.04,
"grade_divergence": true,
"metric_id": "TR_ROC_180D",
"name": "Rate of Change 180D",
"ts_grade": "A",
"ts_hit_rate": 0.66,
"ts_ic": 0.31
},
{
"class": "FLOW",
"cs_grade": "A",
"cs_ic": 0.19,
"grade_divergence": false,
"metric_id": "FLOW_NET_TAKER_30D",
"name": "Net Taker Flow 30D",
"ts_grade": "A",
"ts_hit_rate": 0.62,
"ts_ic": 0.28
}
]
},
"generated_at": "2026-06-19T04:12:33.812Z",
"horizon": "30d",
"model": "CRYPTYX AI",
"ok": true,
"regime": "consolidation",
"regime_confidence": 0.73,
"source": "raw",
"symbol": "BTC",
"thesis": "BTC is positioned constructively into the 30d window: composite score sits at 0.42 (rank 1 of ~200), up 0.07 day-over-day on a TR factor breakout (t_score_pct 92). TR_MOMO_CONT_14D and FLOW_VWAP_DEV_7D are firing on grade-A health with z above 1.8, and the strongest asset-specific predictor TR_ROC_180D (ts_grade A, ts_ic 0.31) confirms trend persistence even though its cs_grade is C. Posture is trend-continuation with flow confirmation; conviction is supported, not stretched."
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"horizon": {
"description": "Factor horizon for the t_score_pct snapshot. One of 7d, 14d, 30d, 90d. Defaults to 30d.",
"type": "string"
},
"symbol": {
"description": "Asset symbol, 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/thesis" # -> 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/thesis");
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/thesis")
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/4366.json, and this resource appears in /discovery/resources and /discovery/search.