Everything you need to know about BattleDome — the AI model comparison platform with built-in fact-checking.
1. Create an account — Sign up with email or Google to start battling. Your first battle includes a free TruthLock demo.
2. Ask a question — Type any question in the arena. Four AI models (Claude, GPT-4o, Gemini, Grok) will compete to give the best answer.
3. Get results — ThunderScore evaluates each response on 9 dimensions. TruthLock fact-checks every claim. The best response wins.
4. Follow up — Ask follow-up questions to dig deeper. All models retain conversation context.
Run a battle programmatically. Requires an API key (Pro tier or above).
curl -X POST https://battledome.ai/api/v1/battle \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"query": "What is quantum computing?",
"modelIds": ["claude", "gpt", "gemini", "grok"]
}'{
"winnerId": "claude",
"results": [
{
"modelId": "claude",
"thunderScore": 9.2,
"trustLevel": "verified",
"text": "..."
}
],
"evaluation": {
"consensus": "...",
"divergence": "...",
"verdict": "..."
}
}