Skip to main content
GET
/
api
/
auth
/
validate
curl -X GET https://api.finscreener.in/api/auth/validate \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "valid": true,
  "user_id": "user_123456"
}
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
curl -X GET https://api.finscreener.in/api/auth/validate \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "valid": true,
  "user_id": "user_123456"
}