Skip to main content
GET
/
api
/
user
/
me
curl -X GET https://api.finscreener.in/api/user/me \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "id": "user_123456",
  "email": "[email protected]",
  "name": "John Doe",
  "credits": 500,
  "subscription": {
    "plan": "Professional",
    "status": "active",
    "expires_at": "2026-12-31T23:59:59Z"
  }
}
Retrieve the authenticated user’s profile information including subscription status and available credits.

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

Response

id
string
User ID
email
string
User email address
name
string
User display name
credits
number
Available credits balance
subscription
object
curl -X GET https://api.finscreener.in/api/user/me \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "id": "user_123456",
  "email": "[email protected]",
  "name": "John Doe",
  "credits": 500,
  "subscription": {
    "plan": "Professional",
    "status": "active",
    "expires_at": "2026-12-31T23:59:59Z"
  }
}