Live Verification Demo
The Problem: Humans masquerading as Algorithms.
The Solution: 6ID rejects human reaction times (500ms+) while certifying Agents (8ms).
🚫 Prevent Masquerading
Ensure sensitive API requests are triggered by autonomous code, not humans running scripts or click-farms.
✅ Proof of Automation
Generate a cryptographic receipt proving that data was processed by a machine model, ensuring privacy compliance.
Quick Start
Install the SDK to sign your Agent's intent.
from sixid import SixID
# 1. Initialize with your Agent Passport
agent = SixID(
api_url="https://api.6id.com",
private_key_hex="your_key_hex",
agent_id="agent:demo_01",
)
# 2. Perform the Reverse Turing Test (<30ms)
proof = agent.certify_machinehood()
# 3. Get the Cryptographic Receipt
print(proof)
# {'status': 'CERTIFIED', 'latency_ms': '12.50', 'receipt': 'sha256:...'}