Skip to main content

AI Trading API

🤖 9 AI models vote ⚡ <200ms latency 📊 BTC · ETH · SOL · BNB · XRP · ADA · AVAX 🔒 Read-only API keys 📄 Apache 2.0 SDK

Production-grade AI trading signals accessible via REST. Nine AI models (Claude, GPT-4o, Grok, Gemini, DeepSeek V4, Perplexity, plus our Leviathan meta-fuser) vote on every market decision. You get the consensus, the individual votes, the regime classifier, the pattern scanner, and Invictus ML risk veto — all from one endpoint call.

Pricing — Stripe self-serve

Free
€0
forever
  • 10 calls/day
  • All read-only endpoints
  • Community support
Get free key →
Pro
Free
during beta
  • 10,000 calls/day
  • WebSocket streaming
  • Historical data export (5 years)
  • Telegram priority support
Lock founding 4.99€/mo →

Quick start — 4 lines of Python

import httpx

r = httpx.get(
    "https://strategyarena.io/api/v1/oracle",
    params={"question": "BTC next 24h direction?", "asset": "BTC"},
    headers={"X-API-Key": "sa_your_key_here"},
)
consensus = r.json()
print(consensus["dominant_signal"], consensus["confidence"])
# → "BUY", 0.67

Endpoints — all REST, all JSON

GET
/api/v1/regime/current
BULL/BEAR/RANGE/NEUTRAL classifier for any asset
GET
/api/v1/signal/consensus
9 AI models vote — dominant signal + strength
GET
/api/v1/lp/range-suggestion
Optimal LP range TIGHT/MEDIUM/WIDE for concentrated LPs
GET
/api/v1/lp/rebalance-signal
Rebalance NOW/SOON/WAIT with return probability
GET
/api/v1/levels
Support/resistance clusters + pivot + distances
GET
/api/v1/trend
ADX + EMA alignment + range detection + phase
GET
/api/v1/volatility
ATR + Bollinger + recommended TP/SL per regime
GET
/api/v1/correlation
Rolling 24h matrix between assets + concurrent limit
GET
/api/invictus/ml/predict
ML death-probability veto (trained on 2K+ contexts)
GET
/api/chimera/scanner
Active patterns (50 catalog, best_strategy per pattern)
POST
/api/bot/ingest
Push your bot's live metrics — shown on /defi dashboard
GET
/api/predictions/news-pulse
X/Twitter sentiment + trending hashtags + impact forecast

Full documentation with schemas and examples at /api-docs.

Who's using it

Rate limits, SLAs, terms

FAQ

Can I use these signals for real trading?

The API delivers model outputs — not financial advice. Strategy Arena is an educational/research platform. You're responsible for your trading decisions. Past signal accuracy doesn't guarantee future performance.

Why 9 AIs instead of 1?

Each AI has blind spots. Consensus + disagreement metrics outperform any single model. See the Dragon Labyrinth Benchmark — structure beats individual compute by 7.5×.

How are the AI calls funded?

DeepSeek V4 Flash powers most of our inference (~$0.0001/call). The 9 AIs collectively cost less than €10/month for the core arena. Stripe contributions cover LLM API costs + VPS hosting.

📡 Full API Docs →