/api/auth/meLấy thông tin tài khoản
Trả về thông tin chi tiết của người dùng hiện tại đang được xác thực qua session hoặc 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"
}