Unusual Whales UnusualWhales API

Information

GET https://api.unusualwhales.com/api/stock/{ticker}/info

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Responses

200 404 422 500

Response Body 200 OK

announce_time Stock Earnings time

The time when the earnings will be released.

Example: premarket
avg30_volume Stock Average 30 Day Volume

The avg stock volume for the stock last 30 days.

Example: 55973002
beta Stock Beta

The beta coefficient measuring the stock's volatility relative to the overall market (typically S&P 500). A beta of 1 indicates the stock moves with the market, greater than 1 indicates higher volatility, and less than 1 indicates lower volatility.

Example: 1.25
full_name Stock Full Name

Full name of the ticker.

Example: APPLE
has_dividend Stock Has Dividend

Boolean flag whether the company pays dividends.

Example: true
has_earnings_history Stock Has Earnings History

Boolean flag whether historic earnings data is present.

Example: true
has_investment_arm Stock Has Investment Arm

Boolean flag whether the given stock is holding stocks of other companies.

Example: true
has_options Stock Has Options

Boolean flag whether the company has options.

Example: true
issue_type Stock Issue Type

The issue type of the ticker.

Example: Common Stock
logo Logo

A link to a logo

marketcap Stock Marketcap AUM

The marketcap of the underlying ticker. If the issue type of the ticker is ETF then the marketcap represents the AUM.

Example: 2965813810400
next_earnings_date Stock Next Earnings Date

The next earnings date of the ticker. Null if either unknown as of now or if the ticker does not have any earnings such as an ETF

Example: 2023-10-26
sector Market General Sector

The financial sector of the ticker. Empty if unknown or not applicable such as ETF/Index.

Example: Technology
short_description Stock Short Description

Short description about what the stock does.

Example: Apple Inc. is an American multinational technology company headquartered in Cupertino, California. Apple is the worlds largest technology company by ...
Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/info" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": {
    "announce_time": "unknown",
    "avg30_volume": "55973002",
    "beta": "1.25",
    "full_name": "APPLE",
    "has_dividend": true,
    "has_earnings_history": true,
    "has_investment_arm": false,
    "has_options": true,
    "issue_type": "Common Stock",
    "marketcap": "2776014233920",
    "marketcap_size": "big",
    "next_earnings_date": "2023-10-26",
    "sector": "Technology",
    "short_description": "Apple Inc. is an American multinational technology company headquartered in Cupertino, California. Apple is the worlds largest technology company by ...",
    "symbol": "AAPL",
    "uw_tags": []
  }
}