Verify claims using multi-validator AI consensus. Generate cryptographic proof certificates. Build trust into your applications.
Everything you need to verify, prove, and track factual claims.
Claims are verified by multiple AI validators (Claude, GPT, Gemini, local models) to reach consensus.
Generate Ed25519-signed certificates that can be verified independently without access to the original repository.
Content-addressable storage with SHA-256 hashing. Track truth like you track code.
Once verified, claims are immutable. The hash chain ensures integrity of all stored truths.
Run entirely offline with Ollama. No API keys required. Your data stays on your machine.
REST API designed for AI agents. Structured responses with metadata for easy integration.
Designed for AI agents and developers. Consistent response format, detailed metadata, and comprehensive error handling.
POST /api/verify - Verify claims with consensusPOST /api/prove - Generate proof certificatesPOST /api/verify-proof - Validate certificatesGET /api/search - Search verified claims# Verify a claim
curl -X POST https://truthgit.com/api/verify \
-H "Content-Type: application/json" \
-d '{"claim": "Water boils at 100°C at sea level"}'
# Response
{
"success": true,
"data": {
"passed": true,
"consensus": 0.97,
"validators": [
{"name": "CLAUDE", "confidence": 0.99},
{"name": "GPT-4", "confidence": 0.95}
],
"claimHash": "a3f2c9d1"
}
}