Skip to main content
GET
/
api
/
auth
/
token
/
validate
curl -X GET https://api.finscreener.in/api/auth/token/validate \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "valid": true,
  "user_id": "user_123456",
  "email": "user@example.com"
}
Check if the current access token is valid and not expired.

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

Response

valid
boolean
Whether the token is valid
user_id
string
User ID associated with the token
email
string
Email associated with the token
curl -X GET https://api.finscreener.in/api/auth/token/validate \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "valid": true,
  "user_id": "user_123456",
  "email": "user@example.com"
}