Skip to main content
GET
/
api
/
user
/
offers
curl -X GET https://api.finscreener.in/api/user/offers \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "offers": [
    {
      "id": "offer_pro_monthly",
      "name": "Professional Monthly",
      "description": "Full access to all features",
      "price": 2999,
      "duration_days": 30,
      "features": ["Recent_COMP", "Recent_DIR", "Recent_GST", "API_ACCESS"]
    },
    {
      "id": "offer_pro_yearly",
      "name": "Professional Yearly",
      "description": "Best value - 2 months free",
      "price": 29999,
      "duration_days": 365,
      "features": ["Recent_COMP", "Recent_DIR", "Recent_GST", "API_ACCESS"]
    }
  ]
}
Retrieve available subscription plans and special offers for the user.

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

Response

offers
array
curl -X GET https://api.finscreener.in/api/user/offers \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "offers": [
    {
      "id": "offer_pro_monthly",
      "name": "Professional Monthly",
      "description": "Full access to all features",
      "price": 2999,
      "duration_days": 30,
      "features": ["Recent_COMP", "Recent_DIR", "Recent_GST", "API_ACCESS"]
    },
    {
      "id": "offer_pro_yearly",
      "name": "Professional Yearly",
      "description": "Best value - 2 months free",
      "price": 29999,
      "duration_days": 365,
      "features": ["Recent_COMP", "Recent_DIR", "Recent_GST", "API_ACCESS"]
    }
  ]
}