Natural-language entry point to the full CRYPTYX stack
Natural-language entry point to the full CRYPTYX stack. POST a query string; an LLM classifies into 60+ intents (conviction_ranking, market_brief, factor_breakdown, signal_explain, regime_check, top_setups, etc.) and routes to the matching pre-computed analytics over 200+ assets, the full signal registry, and 440+ metrics. Response payload is intent-shaped — a top-3 conviction query returns a compact ranking; a market_brief returns a full universe snapshot. Wire an LLM agent into CRYPTYX without plumbing 30+ endpoints.
250000 (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": "250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"format": "json",
"query": "What are the highest conviction assets today?"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"confidence": 0.92,
"data": {
"active_signals": [
{
"confidence": 0.78,
"factor_class": "TR",
"geometry_type": "directional",
"health_grade": "A",
"signal_id": "TR_MOMO_CONT_14D",
"triggered": true,
"z_score": 1.84
},
{
"confidence": 0.66,
"factor_class": "VOL",
"geometry_type": "regime_gate",
"health_grade": "B",
"signal_id": "VOL_COMPRESSION_7v30",
"triggered": true,
"z_score": -1.42
},
{
"confidence": 0.54,
"factor_class": "FLOW",
"geometry_type": "mean_reversion",
"health_grade": "A",
"signal_id": "FLOW_VWAP_DEV_7D",
"triggered": true,
"z_score": 1.21
}
],
"asof_day": "2026-06-18",
"asset": "BTC",
"trigger_count": 3
},
"intent": "signal_active",
"ok": true,
"query": "What signals are firing on BTC right now?",
"response_time_ms": 287,
"source_endpoint": "signals.signal_log + signal_registry"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"format": {
"description": "Response format. Only 'json' supported. Defaults to 'json'.",
"enum": [
"json"
],
"type": "string"
},
"query": {
"description": "Natural-language intelligence question (1-1000 chars). Examples: 'highest conviction assets', 'signals firing on BTC', 'thesis for ETH', 'regime analog to today'.",
"example": "What are the highest conviction assets today?",
"type": "string"
}
},
"required": [
"query"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"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/intelligence/query" # -> 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/intelligence/query");
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/intelligence/query")
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/4359.json, and this resource appears in /discovery/resources and /discovery/search.