CRYPTYX Docs

Quickstart

Get up and running in under a minute. Choose your preferred integration method.

Checking authentication...

First conviction score in 60 seconds

Get the full asset universe ranked by composite conviction score.

1. Set your API key

bash
export CRYPTYX_API_KEY="cx_your_api_key"

2. Fetch conviction scores

bash
curl -s https://cryptyx.ai/api/assets?mode=snapshot \
  -H "Authorization: Bearer $CRYPTYX_API_KEY" \
  | python3 -m json.tool | head -40

3. Check active signals

bash
curl -s https://cryptyx.ai/api/signals/active \
  -H "Authorization: Bearer $CRYPTYX_API_KEY" \
  | python3 -m json.tool

4. Get a factor breakdown

bash
curl -s "https://cryptyx.ai/api/asset-factors?asset=BTC&mode=snapshot" \
  -H "Authorization: Bearer $CRYPTYX_API_KEY" \
  | python3 -m json.tool

Prerequisites

  • A CRYPTYX API key (cx_* prefix). Generate one above or from your account page.
  • For MCP: Node.js 18+ installed (npx ships with npm).
  • For Python: Python 3.10+ recommended.