VORLD AUTH

Secure authentication for games and applications. OTP-based login, JWT tokens, and multi-platform SDKs for Unity, Unreal, Godot, and web.

Why Vorld Auth?

OTP Authentication

Passwordless login with one-time codes. Secure, simple, and user-friendly.

RS256 JWT Tokens

Cryptographically signed tokens with JWKS support for offline verification.

Per-App Key Pairs

Each app gets its own RSA key pair for enhanced security isolation.

Game Engine SDKs

Native support for Unity, Unreal Engine, and Godot with code examples.

Multi-Platform

Web, iOS, Android, Windows, macOS, and Linux support out of the box.

AI-Ready Docs

Copy-paste prompts for Claude, ChatGPT, and Copilot integration.

Quick Start

1

Create Your App

Register at access.thevorld.com and create a new app to get your App ID.

2

Send OTP

POST /api/auth/send-email-otp with the user's email address.

3

Verify & Login

POST /api/auth/verify-email-otp-login with the OTP to get tokens.

Example: Send OTP

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"}'