> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finscreener.in/llms.txt
> Use this file to discover all available pages before exploring further.

# Available Offers

> Get available subscription offers

Retrieve available subscription offers and the user's activated offers.

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer <access_token>`
</ParamField>

## Response

<ResponseField name="available_offers" type="array">
  List of offers available for activation
</ResponseField>

<ResponseField name="activated_offers" type="array">
  List of offers already activated by the user
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.finscreener.in/api/offers/available \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "available_offers": [
      {
        "id": "offer_pro_monthly",
        "name": "Professional Monthly",
        "description": "Full access to all features",
        "price": 2999,
        "duration_days": 30,
        "features": ["Recent_GST", "API_ACCESS"]
      }
    ],
    "activated_offers": []
  }
  ```
</ResponseExample>
