6ID Developer Center

The Standard for Non-Human Identity (NHI).

Live Verification Demo

The "Reverse Turing Test" — Loading...

The Problem: Humans masquerading as Algorithms.
The Solution: 6ID rejects human reaction times (450ms) while certifying Agents (12ms).

🚫 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://kernel.intelexta.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:...'}

Client SDKs