Cross-sectional z-score scanner across 200+ assets and 440+ metrics
Cross-sectional z-score scanner across 200+ assets and 440+ metrics. Pick a metric and threshold; get ranked triggering assets with z, percentile, returns, composite score, and per-metric health grading. Live anomaly hunting.
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": {
"metric_id": "TR_ROC_180D",
"operator": "gt",
"threshold": 2
},
"type": "http"
},
"output": {
"example": {
"asof_day": "2026-06-18",
"durationMs": 421,
"health": {
"data_state": "ok",
"grade": "A",
"hit_rate_7d": 0.6124,
"ic_7d": 0.1342,
"ic_context": "cross_sectional",
"is_anti_predictive": false,
"n_obs_7d": 18420,
"sample_sufficient": true
},
"metric_class": "TR",
"metric_name": "Momentum Continuation 14D",
"ok": true,
"params": {
"metric_id": "TR_MOMO_CONT_14D",
"operator": "abs_gt",
"threshold": 2
},
"polarity": 1,
"results": [
{
"asset": "BTC",
"comp_pct": 0.9742,
"comp_score": 0.4231,
"cross_section_pctl": 0.9648,
"pctl": 0.9824,
"price": 71245.32,
"ret_1d": 0.0142,
"ret_30d": 0.0921,
"ret_7d": 0.0387,
"ts_grade": "A",
"ts_ic": 0.1842,
"volume_usd": 38420000000,
"z": 2.8431
},
{
"asset": "SOL",
"comp_pct": 0.1241,
"comp_score": -0.1874,
"cross_section_pctl": 0.0412,
"pctl": 0.0231,
"price": 142.18,
"ret_1d": -0.0287,
"ret_30d": -0.1142,
"ret_7d": -0.0521,
"ts_grade": "B",
"ts_ic": 0.1124,
"volume_usd": 2840000000,
"z": -2.4117
}
],
"total_assets": 198,
"triggering_count": 7
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"metric_id": {
"description": "Metric ID to scan, e.g. TR_MOMO_CONT_14D, TR_ROC_180D, VOL_COMPRESSION_7v30 (uppercased internally)",
"example": "TR_ROC_180D",
"type": "string"
},
"operator": {
"description": "Filter operator on the 365d-window z-score",
"enum": [
"gt",
"lt",
"gte",
"lte",
"abs_gt"
],
"type": "string"
},
"threshold": {
"description": "Z-score threshold (coerced to number)",
"example": 2,
"type": "number"
}
},
"required": [
"metric_id",
"operator",
"threshold"
],
"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/metrics/slicer/scan" # -> 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/metrics/slicer/scan");
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/metrics/slicer/scan")
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/4371.json, and this resource appears in /discovery/resources and /discovery/search.