> ## 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.

# Active Offers

> Get user's active offer subscriptions

Retrieve the current user's active (non-expired) offer activations.

## Headers

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

## Response

Returns an array of active offer activations with plan details, activation date, and expiration.

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

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.finscreener.in/api/offers/my-active",
      headers={"Authorization": f"Bearer {token}"}
  )
  active_offers = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  [
    {
      "offer_id": "offer_pro_monthly",
      "offer_name": "Professional Monthly",
      "activated_at": "2026-03-01T00:00:00Z",
      "expires_at": "2026-03-31T23:59:59Z",
      "features": ["Recent_GST", "API_ACCESS"],
      "status": "active"
    }
  ]
  ```

  ```json No Active Offers theme={null}
  []
  ```
</ResponseExample>
