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"]
}
]
}
Get available subscription 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"]
}
]
}
Bearer <access_token>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"]
}
]
}