M
MagnusID
Foundation of the Magnus & Quiky ecosystem

One identity.
Every product.

Self-sovereign identity and single sign-on for the Magnus and Quiky ecosystem. Passkey-first. Age-verified. Trust-scored. Built to last, not to flip.

OAuth 2.1 + OIDC compliant WebAuthn / FIDO2 default

Passkey-first

No passwords to steal. WebAuthn as the default, your phone and laptop as the key. Password is the fallback, not the front door.

Trust that travels

A trust score that accumulates across every product — transactions, verifications, community behavior. One reputation, one account, the whole ecosystem.

Privacy you can read

Every product you sign in to is listed in your account. Revoke access with one click. See every claim it's allowed to read. No dark patterns.

One sign-in for

The Magnus & Quiky product family

QuikyPayPayments
QuikyChatMessaging
QuikyLiveLive Streaming
QuikyShopMarketplace
QuikyAuctionsAuctions
QuikyEventsEvents
MagnusAdsAd Platform
MagnusOSDashboard
MagnusDriveStorage
MagnusMailEmail

Capabilities

Everything identity should do, and nothing it shouldn't.

OAuth 2.1 + OIDC

Standard flows. Every Magnus product integrates via proper OIDC — the same primitives Auth0, Okta, and Apple ID use.

Age verification, built in

18+ and 21+ flags, solved once per user. Cannabis, adult, and mature-audience products get cleared without redoing the work.

Reputation across products

Transactions on QuikyPay, streams on QuikyLive, ads on MagnusAds — all feed one 0–1000 trust score per user.

Business + creator verification

KYC once, used everywhere. Pluggable providers (Onfido, Persona, manual fallback). Business EIN + creator identity verification available.

Connected-apps control

The account center shows every Magnus and third-party product logged in. Revoke per-product. Export your data. Delete your account for real.

Developer portal

Register your own product, get a client_id in 30 seconds, configure scopes + webhooks, test in a sandbox. The same portal Magnus uses internally.

How it works

Three steps. Forever.

01

Sign up with a passkey

Your device creates a cryptographic key. No password to leak. Recovery by backup passkey, TOTP, or email — your choice.

02

Verify once, use everywhere

Email, phone, age 18+, age 21+, identity, address — each verification is independent, each shows in your account, each is reusable.

03

Every Magnus product just works

Open QuikyPay or QuikyLive — you're already signed in. Grant scopes the first time, revoke anytime from your MagnusID account center.

For developers

OIDC in thirty seconds, not thirty days.

Register a client, choose your scopes, drop the SDK into your app. Works with any framework that speaks OAuth — because it's just OAuth.

import { MagnusIdClient } from "@magnusid/sdk";

const magnusid = new MagnusIdClient({
  issuer: "https://id.magnus.ai",
  clientId: process.env.MAGNUSID_CLIENT_ID!,
  clientSecret: process.env.MAGNUSID_CLIENT_SECRET!,
});

// 1. Send user to consent
const url = await magnusid.authorizeUrl({
  redirect_uri: "https://app.mine.com/callback",
  scope: "openid profile email age:21",
});

// 2. Handle the callback
const tokens = await magnusid.exchangeCode({
  code, redirect_uri: "https://app.mine.com/callback",
});

// 3. Verify on every request
const claims = await magnusid.verifyAccessToken(tokens.access_token);
// → { sub, email, age_21: true, trust_score: 812, ... }

Pricing

Free for users. Transparent for developers.

End users
Free

Forever. Your identity isn't the product.

  • Unlimited passkeys + MFA
  • All verifications included
  • Data export any time
Developers
Usage-priced

Free for the first 10,000 authentications/month. After that, $0.002 per auth.

  • Full OIDC compliance
  • Webhooks + SDK
  • Sandbox environment
Enterprise
Contact

White-label, SSO federation, compliance support, dedicated SLAs.

  • SAML + SCIM
  • Dedicated cluster option
  • 24/7 support

FAQ

Questions, asked and answered.

Is MagnusID an Auth0 wrapper?+

No. It's our own OIDC provider, built from scratch, running on our own servers. Your identity data doesn't leave Magnus infrastructure.

Why passkeys?+

Passwords are the #1 cause of account takeover. Passkeys (WebAuthn) move the secret into the device's secure enclave — it can't be phished, reused, or leaked in a breach.

Can I use MagnusID outside the Magnus ecosystem?+

Yes. Third-party apps can register via the developer portal and integrate over standard OIDC. You control which scopes they see.

What happens if I delete my MagnusID?+

Every linked product is notified via webhook, your data export is queued, and every OIDC grant is revoked. Real deletion, not just a soft flag.

How does MagnusID compare to Apple ID?+

Apple ID is Apple-only. MagnusID is the Apple-ID-grade experience for any creator, business, or user on the Magnus / Quiky ecosystem — and optionally beyond.