Get cryptographic proof for your AI inferences in 5 minutes. No special setup, no complex integration.
Sign up at six-sov.com/signup
sk_test_six_xxxxxxxxSIX is OpenAI-compatible. If you've used OpenAI's API, you already know how to use SIX.
curl -X POST https://six-sov.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4",
"messages": [
{"role": "user", "content": "What is the capital of France?"}
]
}'
import openai
client = openai.OpenAI(
api_key="YOUR_API_KEY",
base_url="https://six-sov.com/v1"
)
response = client.chat.completions.create(
model="gpt-4",
messages=[
{"role": "user", "content": "What is the capital of France?"}
]
)
print(response.choices[0].message.content)
print(response.receipt) # Cryptographic proof!
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://six-sov.com/v1'
});
const response = await client.chat.completions.create({
model: 'gpt-4',
messages: [{ role: 'user', content: 'What is the capital of France?' }]
});
console.log(response.choices[0].message.content);
console.log(response.receipt); // Cryptographic proof!
Every response includes a receipt object with cryptographic proof:
{
"id": "chatcmpl-abc123",
"choices": [...],
"receipt": {
"receipt_id": "rcpt_f8c505ce71ae43f3",
"timestamp": "2026-02-07T15:30:00Z",
"request_hash": "sha256:a1b2c3d4...",
"response_hash": "sha256:e5f6g7h8...",
"model": "gpt-4",
"provider": "openai",
"attestation": {
"merkle_root": "sha256:m1n2o3p4...",
"merkle_proof": ["sha256:...", "sha256:..."],
"xrpl_tx": "ABC123...",
"signature": "schnorr:..."
}
}
}
| Field | What It Proves |
|---|---|
request_hash | Your exact prompt, tamper-evident |
response_hash | The exact response, tamper-evident |
merkle_root | Batch inclusion proof |
xrpl_tx | Anchored to public blockchain |
signature | Signed by SIX's verified key |
You don't have to trust us. Verify the receipt yourself:
npx six-verifier verify rcpt_f8c505ce71ae43f3
pip install six-verifier
six-verifier verify rcpt_f8c505ce71ae43f3
✅ receipt signature: valid
✅ merkle proof: valid (leaf ∈ root)
✅ xrpl anchor: confirmed (tx ABC123...)
receipt_id: rcpt_f8c505ce71ae43f3
timestamp: 2026-02-07T15:30:00Z
provider: openai
model: gpt-4
You just made a cryptographically verified AI inference. Every request through SIX: