Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.otpedge.com/llms.txt

Use this file to discover all available pages before exploring further.

Hero Light

Infrastructure for Modern Auth

OTP Edge is a high-performance WhatsApp OTP platform designed for developers who prioritize security, speed, and reliability. We eliminate the complexity of Meta developer accounts and provide a distributed edge network for sub-100ms dispatch latency.

Key Features

Stateless Identity

Receive cryptographically signed JWTs upon verification. Validate them offline using our global /.well-known/jwks.json endpoint. Secure, stateless, and enterprise-ready.

Edge Compute

OTPs are dispatched through our global edge network for maximum delivery speed.

Zero Meta Setup

Start sending messages immediately without managing Meta apps or business verification.

Managed Security

Benefit from IP allowlisting, CSPRNG generation, and hashed OTP storage.

The OTP Edge Flow

// 1. Dispatch
await fetch('https://api.otpedge.com/v1/send-otp', {
  body: JSON.stringify({ phone: "+919876543210" })
});

// 2. Verify
const response = await fetch('https://api.otpedge.com/v1/verify-otp', {
  body: JSON.stringify({ phone: "+919876543210", code: "123456" })
});

// 3. Receive Stateless Identity
// Returns: { identity_token: "eyJhbG..." }