Unusual Whales UnusualWhales API

Fixed-Window Analytics

GET https://api.unusualwhales.com/api/analytics/window

Request

Security: Bearer Auth Authorization: Bearer <token>

Query Parameters

symbols string required

Comma-separated tickers.

Example: AAPL,IBM,MSFT
range string required

Either an ISO date for the start of the window (pair with the optional range_end) or a relative shorthand like '2month' or 'full'.

Example: 2month
range_end string optional

Optional end date when using ISO range_start.

Example: 2024-08-31
interval string optional
Default: DAILY
enum: 1min, 5min, 15min, 30min, 60min, DAILY, WEEKLY, MONTHLY
ohlc string optional
Default: close
enum: open, high, low, close
calculations string required

Comma-separated. Supported: MIN, MAX, MEAN, MEDIAN, CUMULATIVE_RETURN, VARIANCE, STDDEV, MAX_DRAWDOWN, HISTOGRAM, AUTOCORRELATION, COVARIANCE, CORRELATION.

Example: MEAN,STDDEV,CORRELATION

Responses

200 422 500

Response Body 200 OK

meta object
payload object
Try It GET
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/analytics/window?symbols=AAPL,IBM,MSFT&range=2month&calculations=MEAN,STDDEV,CORRELATION" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": {
    "meta": null,
    "payload": null
  }
}