🔐 zk-SNARK Identity Protocol

Identity Without
Compromise

Zero-Knowledge KYC for Web3. Prove your identity without revealing who you are. Powered by the high-throughput AetherFlux dual-consensus consensus engine.

Start Verification → View API Docs
<1ms
Proof Verification
0
PII Stored On-Chain
ZK
Groth16 Proof System
Chain Compatibility
How it Works
Three Steps to Sovereign Identity
Your documents never leave your device. Only mathematical proof is stored on-chain.
Step 01
📄
Document Verification
Submit your document to our secure enclave. The system verifies your age and sanctions status, then instantly destroys the raw data. Nothing is stored.
AWS Nitro Enclave
Step 02
⚙️
ZK Proof Generation
A Groth16 zero-knowledge proof is generated. It mathematically proves you are verified — without revealing your name, date of birth, or any personal data.
Arkworks Groth16 / BN254
Step 03
⛓️
On-Chain Credential
Your ZK proof is anchored to the AetherFlux L1 blockchain under your @aeth handle. Any dApp can now verify your compliance status in under 1 millisecond.
AetherFlux L1 ANS Registry
Built Different
🔒
Zero PII Storage
Raw identity data is destroyed inside the Nitro Enclave immediately after proof generation. Not even AetherLabs can access it.
Sub-millisecond Verify
On-chain ZK proof verification completes in under 1ms on the AetherFlux L1 network — the fastest identity check in Web3.
🌐
Cross-Chain API
One line of code. External dApps on Ethereum, Solana, Arbitrum can query AetherID compliance status via our REST API or oracle.
🏛️
Regulatory Ready
GDPR, CCPA, and India PDPB compliant by architecture. Designed for institutional-grade AML/KYC requirements.
🔑
Wallet-Bound Proof
Each credential is cryptographically bound to your specific wallet. A stolen proof cannot be replayed by another address.
🛡️
Post-Quantum Safe
Built on AetherFlux's CRYSTALS-Dilithium signing infrastructure — quantum-resistant from day one.
Comparison
How We Stack Up
FeatureAetherIDSumsub / OnfidoPolygon IDHumanity Protocol
ZK Proofs✓ Yes✗ No✓ Yes✓ Yes
Zero PII Storage✓ Yes✗ No (cloud DB)PartialPartial
Own L1 Blockchain✓ AetherFlux✗ No✗ PolygonEVM L2
Post-Quantum Safe✓ Yes✗ No✗ No✗ No
Cross-Chain API✓ YesAPI onlyEVM onlyEVM only
@handle Identity✓ @aeth✗ No✗ No✗ No
Simple, Usage-Based Pricing
Pay only for what you use. No minimums during testnet.
Developer
Free
During Testnet
  • 60 API calls / minute
  • Basic verification
  • Clearance Level 1
  • Testnet network
  • Community support
Get API Key
Enterprise
Custom
volume pricing
  • Unlimited API calls
  • Dedicated HSM node
  • White-label SDK
  • SLA guarantee
  • Dedicated support
Talk to Sales
For Developers
Integrate in Minutes
One API call. Full compliance. No identity data handled by your app.
Verify Wallet
Register User
Attest Cross-Chain
// Check if a wallet is AetherID verified
const res = await fetch(
  'https://aetherid.aetherlabs.biz/identity/verify/AETH_30A6...',
  { headers: { 'X-AetherID-Key': 'YOUR_API_KEY' } }
);

const identity = await res.json();
// Returns:
{
  verified: true,
  aeth_handle: "vishal@aeth",
  is_above_18: true,
  not_sanctioned: true,
  clearance_level: 1
  // No name, no DOB, no document data — ever.
}