# Sliding-Window Analytics `GET` `https://api.unusualwhales.com/api/analytics/sliding` **Requires Advanced+ tier (Advanced, Enterprise, or Enterprise + Kafka).** Sliding window statistical analytics across one or more tickers. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `symbols` | string | Yes | | | `range` | string | Yes | | | `range_end` | string | No | | | `interval` | string | No | | | `ohlc` | string | No | | | `window_size` | integer | No | | | `calculations` | string | Yes | | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `meta` | object | | | `payload` | object | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/analytics/sliding?symbols=VALUE&range=VALUE&calculations=VALUE" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/analytics/sliding?symbols=VALUE&range=VALUE&calculations=VALUE", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "meta": null, "payload": null } } ```