CRYPTYX Docs
Institutional+

Intelligence Query API

Natural language interface to the entire CRYPTYX data layer. Send a question in plain English, get structured JSON intelligence back. 49 intent types across 10 categories cover conviction, signals, factors, regimes, metrics, market data, compound intelligence, and more.

What it does

The Intelligence Query API parses natural language questions, classifies them into one of 49 intent types across 10 categories, resolves the relevant assets and metrics, and returns structured JSON — not free text. Every answer traces back to specific factor scores, signal triggers, and metric values. Responses are composable: pipe them directly into trading systems, agent workflows, or downstream analytics without parsing prose.

Getting started

Send a POST request to /api/intelligence/query with a JSON body containing your question:

curl -X POST -H "Authorization: Bearer cx_your_key" \
  -H "Content-Type: application/json" \
  -d '{"query":"What is the regime for BTC?"}' \
  https://cryptyx.ai/api/intelligence/query

The response includes the classified intent, resolved entities, and a structured data payload with the evidence backing each conclusion.

Key capabilities

  • 49 intent types — conviction ranking, signals, factors, regimes, market data, metrics, asset intelligence, intra-day micro-regimes, compound synthesis, agent surfaces, and more
  • Structured JSON responses — typed payloads with scores, rankings, and labels. No free-text generation, no hallucination risk on data points
  • Evidence-backed — every answer traces to specific metrics and factor scores. The response includes the data lineage so you can verify any conclusion
  • Composable — responses can be piped into trading systems, agent workflows, or chained with other CRYPTYX API calls for multi-step analysis

What to try first

  • "What happened in the market today?"
  • "Full analysis of BTC"
  • "Best opportunities right now"
  • "Compare ETH and SOL side by side"
  • "What divergences are active right now?" — returns cohort-level or per-asset divergences (add an asset name for per-asset mode)
  • "What regime is SOL in?" — returns the 9-regime classification across all 8 horizons with per-asset divergence alerts
  • "Current risk flags across the universe"

Reference documentation