2 Ask the 9 AI Oracles
POST
/api/v1/oracle
Ask any crypto/market question. 9 AIs (Claude, GPT, Grok, Gemini, DeepSeek, Perplexity + Chimera, Hydra, Meta Intelligence) vote independently and return a weighted consensus.
Header: X-API-Key: sa_YOUR_KEY
Body: {"question": "Will BTC break $100K this month?"}
curl -X POST https://strategyarena.io/api/v1/oracle -H "X-API-Key: sa_YOUR_KEY" -H "Content-Type: application/json" -d '{"question":"Will BTC crash this week?"}'
curl -X POST https://strategyarena.io/api/v1/oracle \
-H "X-API-Key: sa_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"question":"Will BTC crash this week?"}'
Example response
{
"consensus": {
"direction": "BEARISH",
"bull_probability": 26,
"bear_probability": 74,
"strength": "MODERATE",
"oracles_count": 9
},
"votes": {
"claude": { "direction": "BEARISH", "conviction": 62, "reasoning": "..." },
"grok": { "direction": "BEARISH", "conviction": 45, "reasoning": "..." },
}
}
3 More endpoints
GET
/api/v1/predictions
Get all active prediction markets with AI consensus vs Polymarket odds.
Header: X-API-Key: sa_YOUR_KEY
GET
/api/v1/leaderboard?asset=btc
Live arena leaderboard — 54 AI strategies competing on real data.
Header: X-API-Key: sa_YOUR_KEY | Params: asset = btc, eth, sol, bnb, gold, silver
GET
/api/v1/docs
Full API documentation in JSON format.