Authentication that
just works

Drop-in auth for your apps. Passwords, magic links, OAuth, MFA, passkeys - everything you need, nothing you don't.

Everything you need

Built for developers who want auth that scales without the headaches.

Multiple Auth Methods

Email/password, magic links, OAuth providers, MFA, and passkeys. Support whatever your users prefer.

Teams & Organizations

Built-in support for teams, roles, and permissions. Invite members, manage access, scale your B2B app.

Security First

Rate limiting, brute force protection, encrypted secrets, audit logs. Enterprise security by default.

Edge-Native Performance

Built on Cloudflare Workers. Sub-50ms auth globally. No cold starts, no regional latency.

Developer Experience

TypeScript SDK, webhooks, customizable emails, comprehensive API. Build in minutes, not weeks.

Analytics & Insights

Track signups, logins, MFA adoption. Understand your users with real-time dashboards.

Simple integration

Get authentication running in your app with just a few lines of code.

terminal
npm install @cead/sveltekit
hooks.server.ts
import { createAuthHandler } from '@cead/sveltekit';

export const handle = createAuthHandler({
  apiKey: 'pk_live_...',
  apiUrl: 'https://api.cead.dev'
});
+page.svelte
<script>
  import { signIn } from '@cead/sveltekit';
</script>

<button onclick={signIn}>
  Sign In
</button>
+page.server.ts
// Protected route
import { requireAuth } from '@cead/sveltekit';

export const load = async ({ locals }) => {
  const user = requireAuth(locals);
  return { user };
};

Simple, transparent pricing

Start free, scale as you grow. No hidden fees, no surprises.

Free

$0/month

Perfect for side projects and getting started.

  • 1,000 monthly active users
  • All auth methods
  • Community support
Get Started

Enterprise

Custom

For large scale and compliance needs.

  • Unlimited users
  • Custom OIDC/SAML
  • SLA & dedicated support
  • SOC 2 compliance
Contact Sales

Ready to ship auth?

Join thousands of developers building secure apps with Cead. Get started in minutes.

Start Building Free