DEV Community

Alex Spinov
Alex Spinov

Posted on

WorkOS Has a Free Enterprise Auth Platform With SSO and Directory Sync

WorkOS provides enterprise-ready authentication. Add SSO (SAML/OIDC), directory sync (SCIM), and audit logs to your SaaS in minutes.

Free Tier

  • 1M monthly active users — AuthKit
  • 5 SSO connections — SAML + OIDC
  • 5 directory connections — SCIM
  • Audit logs — 1 week retention
  • Social auth — Google, GitHub, Microsoft
  • MFA — TOTP support

Add SSO

import { WorkOS } from '@workos-inc/node';
const workos = new WorkOS('sk_...');

// Get SSO URL
const { url } = await workos.sso.getAuthorizationURL({
  organization: 'org_...',
  redirectURI: 'https://app.example.com/callback',
});

// Handle callback
const { profile } = await workos.sso.getProfileAndToken(code);
Enter fullscreen mode Exit fullscreen mode

WorkOS vs Auth0

Feature WorkOS Auth0
Free MAU 1M 7.5K
SSO 5 free Enterprise plan
Directory Sync Built-in Enterprise
Enterprise focus Primary Secondary

Need enterprise auth? GitHub or spinov001@gmail.com

Top comments (0)