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

# Subscription Status

> Get current user's active subscriptions

Get the current user's active subscription details and feature access.

## Headers

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

## Response

Returns the user's active subscriptions including plan details, status, and available features.

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

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

  response = requests.get(
      "https://api.finscreener.in/api/subscriptions/status",
      headers={"Authorization": f"Bearer {token}"}
  )
  print(response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "subscriptions": [
      {
        "plan": "Professional",
        "status": "active",
        "starts_at": "2026-01-01T00:00:00Z",
        "expires_at": "2026-12-31T23:59:59Z",
        "features": ["Recent_GST", "API_ACCESS"]
      }
    ]
  }
  ```
</ResponseExample>
