CRYPTYX Docs
Developer

API Quickstart

Full REST API with 50+ endpoints. Get conviction scores, factor breakdowns, signal catalogs, backtest results, and market data — all via authenticated HTTP requests.

What it does

The CRYPTYX API exposes the full intelligence engine over REST. Every computation that powers the dashboard — conviction scoring, multi-factor analysis, signal evaluation, regime detection — is available as a typed JSON endpoint. Responses are structured for direct consumption by trading systems, agent workflows, and custom dashboards.

Getting started

Generate an API key at /account under API Keys. All requests require an Authorization: Bearer cx_... header. The base URL is https://cryptyx.ai.

curl -H "Authorization: Bearer cx_your_key" \
  https://cryptyx.ai/api/assets

The response returns conviction-scored asset snapshots — composite scores, factor breakdowns, regime labels, and signal trigger counts for every tracked asset.

Key capabilities

  • Market data — assets, OHLCV history, live prices (15m refresh), order book liquidity, token universe
  • Factor intelligence — composite conviction scores, per-class factor rankings, regime detection, featured metrics
  • Signal management — full catalog with trigger stats, backtest over date ranges, fork parameters, explain signal logic, threshold simulation
  • Metric analysis — single-metric slicer, universe scan for z-score extremes, composite multi-factor backtest
  • Competition — leaderboard rankings, active rounds, entry registration

What to try first

  • GET /api/assets — conviction scores and factor breakdowns for every tracked asset
  • GET /api/signals/catalog — the full signal registry with active parameters and 30-day trigger statistics
  • POST /api/signals/backtest — run a signal against historical data and evaluate trigger rate, confidence, and forward returns

Reference documentation