curl --request POST \
--url https://api.example.com/auth/verify \
--header 'Authorization: <authorization>'{
"message": "<string>"
}curl --request POST \
--url https://api.example.com/auth/verify \
--header 'Authorization: <authorization>'{
"message": "<string>"
}Verifies the validity of an access token and checks user authentication status.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/4rt21/backend-proyecto/llms.txt
Use this file to discover all available pages before exploring further.
Bearer {accessToken}Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...curl -X POST https://api.falconalert.com/auth/verify \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxIiwidHlwZSI6ImFjY2VzcyIsInByb2ZpbGUiOnsiaWQiOiIxIiwiZW1haWwiOiJhcnR1cm9AZ21haWwuY29tIiwibmFtZSI6IkFydHVybyBVdHJpbGxhYSDDiURJVCIsInJvbGVfaWQiOjF9LCJpYXQiOjE3NjEyOTI0MTEsImV4cCI6MTc2MTI5NjAxMX0.ECBWVGu-tXr7Shs9qvg9LMISOXtFQmp3R8C5Uk8cUuw"
{
"message": "Token is valid"
}
| Code | Description |
|---|---|
| 200 | Token is valid and user is properly authenticated. |
| 401 | Invalid token, expired token, or authentication issues (missing user profile, missing role). |