Skip to main content
GET
/
api
/
user
/
subscription-status
curl -X GET https://api.finscreener.in/api/user/subscription-status \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "subscription": {
    "plan": "Professional",
    "status": "active",
    "starts_at": "2026-01-01T00:00:00Z",
    "expires_at": "2026-12-31T23:59:59Z"
  },
  "features": {
    "Recent_COMP": true,
    "Recent_DIR": true,
    "Recent_GST": true,
    "API_ACCESS": true
  },
  "limits": {
    "daily_details": 1000,
    "daily_searches": -1
  }
}
Get detailed information about the user’s subscription including available features and limits.

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

Response

subscription
object
features
object
limits
object
curl -X GET https://api.finscreener.in/api/user/subscription-status \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "subscription": {
    "plan": "Professional",
    "status": "active",
    "starts_at": "2026-01-01T00:00:00Z",
    "expires_at": "2026-12-31T23:59:59Z"
  },
  "features": {
    "Recent_COMP": true,
    "Recent_DIR": true,
    "Recent_GST": true,
    "API_ACCESS": true
  },
  "limits": {
    "daily_details": 1000,
    "daily_searches": -1
  }
}