Manage your API tokens for accessing the user lookup API. Each token requires Bearer authentication.

Name Token Description Last Used Created Actions
Shubhm usr_Z**********FgBEw8pt334fMWDddw7tbO5R2pePk - Never Jan 31, 2026
shubhm2 usr_r**********8bm6oxaQsdtBCNQXsgqDKcKEegNg5 new user Feb 04, 2026 23:33 Jan 31, 2026

How to Use Your Token

Authorization Header

Authorization: Bearer YOUR_API_TOKEN

Example cURL Request

curl -X POST https://yourdomain.com/api/users/lookup \

-H "Authorization: Bearer YOUR_API_TOKEN" \

-H "Content-Type: application/json" \

-d '{"email": "user@example.com"}'

Example JavaScript Request

const response = await fetch('/api/users/lookup', {

method: 'POST',

headers: {

'Authorization': 'Bearer YOUR_API_TOKEN',

'Content-Type': 'application/json'

},

body: JSON.stringify({email: 'user@example.com'})

});