/api/auth/meGet Account Information
Returns details of the current user authenticated via session or API Key.
Code Sample
curl -X GET "https://ezminbox.com/api/auth/me" \
-H "Authorization: Bearer YOUR_API_KEY"Response Example
{
"userId": "user_12345",
"email": "user@example.com",
"username": "john_doe",
"role": "user",
"isPremium": true,
"webhookUrl": "https://your-domain.com/webhook"
}