Token Guard

Create Token
Generate a secure, time-sensitive token for an email address.

POST /api/create-token

Verify Token
Verify a token against an email. Protected by AI-powered brute force detection.

POST /api/verify-token

How It Works

Token Guard provides a secure, stateless way to verify user identity via email links, often used for passwordless login, email verification, or one-time actions. It's protected by an AI-powered security layer to prevent abuse.

1. Generate Token

Your server calls our /api/create-token endpoint with a user's email.

2. Send Link

We return a unique, secure token. You embed this token in a link and email it to the user.

3. Verify & Protect

The user clicks the link. Your frontend calls /api/verify-token. We validate the token and check for suspicious activity before granting access.