CRYPTYX is the intelligence layer for autonomous trading agents — the same institutional-g
CRYPTYX is the intelligence layer for autonomous trading agents — the same institutional-grade research stack that powers professional desks, priced per call in USDC. 200+ digital assets, 440+ metrics, 150+ signals across 8 factor classes, walk-forward validated, macro-regime aware.Agents don't just consume signals. They backtest any factor over 5+ years of history (Metric Slicer), fork and validate custom signal recipes (Signal Forge), scan the universe for live matches, decompose per-asset conviction across every factor class, and query the full stack in natural language.The loop: define your conviction thesis → validate it against history → scan for live matches → execute via OKX, Kraken, or Coinbase execution toolkits. CRYPTYX is the brain; exchanges are the rails. No accounts, no API keys, no rate cards.
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": {
"horizon": "",
"limit": 0
},
"type": "http"
},
"output": {
"example": {
"asof_day": "latest",
"durationMs": 4218,
"horizon": "14d",
"ideas": [
{
"asset": "BTC",
"composite_score": 0.42,
"derivatives": {
"funding_z": 1.34,
"oi_momentum_z": 0.91
},
"dominant_factor": {
"class": "TR",
"t_score": 1.42
},
"rank": 1,
"regime": "expansion",
"regime_confidence": 0.78,
"returns": {
"ret_1d": 0.018,
"ret_7d": 0.064
},
"sharpe_7d": 1.82,
"signal_count": {
"atomic": 7,
"composite": 2
},
"top_predictors": [
{
"class": "TR",
"cs_grade": "B",
"metric_id": "TR_ROC_180D",
"name": "Rate of Change 180D",
"ts_grade": "A",
"ts_ic": 0.21
},
{
"class": "FUT",
"cs_grade": "A",
"metric_id": "FUT_FUNDING_1D",
"name": "Funding Rate 1D",
"ts_grade": "B",
"ts_ic": 0.14
}
],
"top_setups": [
{
"class": "TR",
"grade": "A",
"hit_rate": 0.67,
"last_triggered": "2026-06-15",
"mean_fwd_return": 0.041,
"n_triggers": 18,
"name": "Trend Momentum Continuation 14D",
"score": 0.117,
"signal_id": "TR_MOMO_CONT_14D"
},
{
"class": "FLOW",
"grade": "B",
"hit_rate": 0.58,
"last_triggered": "2026-06-12",
"mean_fwd_return": 0.028,
"n_triggers": 12,
"name": "VWAP Deviation 7D",
"score": 0.056,
"signal_id": "FLOW_VWAP_DEV_7D"
}
]
}
],
"meta": {
"scope": "signals_only",
"setup_gate": "health_grade IN (A,B), NOT anti-predictive, n_triggers >= 5",
"total_universe": 5,
"x402_price_usd": 0.1
},
"ok": true
},
"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": "Forward-return horizon for setup stats: 7d, 14d, or 30d (default 14d)",
"type": "string"
},
"limit": {
"description": "Number of trade ideas to return (3-20, default 5)",
"type": "integer"
}
},
"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/v1/ai/trade-ideas" # -> 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/v1/ai/trade-ideas");
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/v1/ai/trade-ideas")
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/4361.json, and this resource appears in /discovery/resources and /discovery/search.