Quickstart

Get your first API call running in 2 minutes

Install the SDK

Install the Python client:

pip install cryptarista

Get an API Key

Request beta access by emailing api@aristaflow.cloud. You'll receive an API key in the format cda_live_....

Make Your First Call

from cryptarista import CryptaristaClient

client = CryptaristaClient(api_key="cda_live_...")

# Get a derivatives snapshot
snapshot = client.snapshots.derivatives(symbol="BTCUSDT")
print(snapshot)

# Get active news signals
signals = client.news.active_signals(asset="BTC")
for signal in signals:
    print(f"{signal.type}: {signal.severity} ({signal.confidence})")
    print(f"  Sources: {signal.source_urls}")

Using REST Directly

If you prefer raw HTTP:

curl -H "X-API-Key: cda_live_..." \
  https://api.aristaflow.cloud/v1/snapshots/derivatives?symbol=BTCUSDT

MCP for AI Agents

Connect your AI agent framework via MCP (stdio or SSE transport):

{
  "mcpServers": {
    "cryptarista": {
      "command": "cryptarista-mcp",
      "args": ["--api-key", "cda_live_..."]
    }
  }
}

Next Steps