Simple, Transparent Pricing

Open source client library. Premium services for scale. Pay only for what you use.

🎉 H33 Core SDK is FREE

Use passwordless authentication locally - no API key required!

npm install @h33/core

import H33 from '@h33/core';
const h33 = new H33();
const result = await h33.authenticate({ email: 'user@example.com' });
// Works offline, no API needed!
Free
$0/month

Perfect for development and small apps

  • Open source H33 Core SDK
  • Local passwordless authentication
  • Behavioral biometrics collection
  • Zero-knowledge proof generation
  • FHE encryption/decryption
  • Community support
  • No API key required
Starter
$49/month

For growing applications

  • Everything in Free +
  • 100,000 API verifications/month
  • AI fraud detection
  • Basic threat intelligence
  • Email support
  • Usage analytics
  • 5% usage revenue share
Professional
$299/month

For enterprise applications

  • Everything in Starter +
  • 5,000,000 API verifications/month
  • Advanced AI fraud detection
  • Quantum-resistant verification
  • Blockchain audit trails
  • Advanced behavioral analysis
  • Custom threat models
  • SLA guarantees
  • Phone support
  • 20% usage revenue share

Partner with H33 - Power Your Platform

Add H33 to your platform and offer passwordless authentication to millions

For Auth Providers

Auth0, Okta, Firebase Auth

// Add H33 in 2 lines
import H33 from '@h33/core';
auth0 = H33.enhance(auth0);

Instantly upgrade your users to passwordless

For Payment Processors

Stripe, Square, PayPal

// Add fraud prevention
const h33Stripe = new H33StripeProcessor();
const result = await h33Stripe.processPayment(data);

99.9% fraud prevention, quantum-secure payments

For OS/Hardware

Android, iOS, Router Manufacturers

// Every device becomes a SCIF
#include 
H33SecurePhone* scif = h33_initialize();

Turn every phone into a secure compartment

Partner Revenue Models

License

$10K-500K/month

Revenue Share

20% of additional revenue

Per-User

$0.10-1.00/user/month

Integration Examples

React Example

import H33 from '@h33/core';

function LoginButton() {
  const h33 = new H33();
  
  const handleLogin = async () => {
    const result = await h33.authenticate({ 
      email: 'user@example.com' 
    });
    if (result.success) {
      // User authenticated!
    }
  };
  
  return (
    <button onClick={handleLogin}>
      Login with H33
    </button>
  );
}

Express.js Middleware

import H33 from '@h33/core';
const h33 = new H33({ apiKey: process.env.H33_API_KEY });

app.use(async (req, res, next) => {
  const result = await h33.authenticate({ 
    id: req.session.userId 
  });
  
  if (result.success) {
    req.user = result;
    next();
  } else {
    res.status(401).send('Authentication failed');
  }
});

Ready to Get Started?

Start free, scale with premium features, or partner with us for millions of users

Start Free on GitHub Partner with Us