Unusual Whales UnusualWhales API

Price change per month per year

GET https://api.unusualwhales.com/api/seasonality/{ticker}/year-month

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Responses

200 422 500

Response Body 200 OK

change Seasonality Change

The relative price change for the month.

Example: 0.09494354167379757
close Seasonality Close Price

The closing stock price of the ticker for the month.

Example: 182.91
month Seasonality Month Number

The number indicating the month the data applies for. e.g. 1 -> January, 2 -> February, ...

Example: 5
open Seasonality Open Price

The opening stock price of the ticker for the month.

Example: 182.91
year Seasonality Year

The Year.

Example: 5
Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/seasonality/{ticker}/year-month" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "change": "-0.0469",
      "close": 315.75,
      "month": 9,
      "open": 331.31,
      "year": 2023
    },
    {
      "change": "0.0690",
      "close": 338.11,
      "month": 10,
      "open": 316.28,
      "year": 2023
    },
    {
      "change": "0.1151",
      "close": 378.91,
      "month": 11,
      "open": 339.79,
      "year": 2023
    },
    {
      "change": "-0.0019",
      "close": 376.04,
      "month": 12,
      "open": 376.76,
      "year": 2023
    },
    {
      "change": "0.0634",
      "close": 397.58,
      "month": 1,
      "open": 373.86,
      "year": 2024
    }
  ]
}