Secure authentication for games and applications. OTP-based login, JWT tokens, and multi-platform SDKs for Unity, Unreal, Godot, and web.
Passwordless login with one-time codes. Secure, simple, and user-friendly.
Cryptographically signed tokens with JWKS support for offline verification.
Each app gets its own RSA key pair for enhanced security isolation.
Native support for Unity, Unreal Engine, and Godot with code examples.
Web, iOS, Android, Windows, macOS, and Linux support out of the box.
Copy-paste prompts for Claude, ChatGPT, and Copilot integration.
Register at access.thevorld.com and create a new app to get your App ID.
POST /api/auth/send-email-otp with the user's email address.
POST /api/auth/verify-email-otp-login with the OTP to get tokens.
curl -X POST "https://auth.thevorld.com/api/auth/send-email-otp" \
-H "Content-Type: application/json" \
-H "x-vorld-app-id: app_xxxxxxxxxxxx" \
-d '{"email": "user@example.com"}'