Unusual Whales UnusualWhales API

Ticker Flow

GET https://api.unusualwhales.com/api/insider/{ticker}/ticker-flow

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Query Parameters

limit Default 500 Max 500 Min 1 optional

How many items to return. Default: 500. Max: 500. Min: 1.

Example: 10 Default: 500
>= 1 <= 500
page Page optional

Page number (use with limit). Starts on page 0.

Example: 1

Responses

200

Response Body 200 OK

avg_price Insider Average Price

The average price of the insider trade.

Example: 123.45
buy_sell Transaction Side

Whether the insider bought or sold.

Example: buy
date Market General Trading day

A trading date in ISO format.

Example: 2023-09-08
has_more Has More

Indicates whether there are more results available beyond the current page.

premium Insider Premium

The premium of the insider trade.

Example: 123.45
transactions Insider Transactions

The number of transactions of the insider trade.

Example: 1
uniq_insiders Insider Unique Insiders

The number of unique insiders of the insider trade.

Example: 1
volume Insider Volume

The volume of the insider trade.

Example: 1000
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/insider/{ticker}/ticker-flow" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "avg_price": 162.32,
      "buy_sell": "sell",
      "date": "2024-12-12",
      "premium": "664386",
      "transactions": 54,
      "uniq_insiders": 10,
      "volume": 244331
    }
  ],
  "has_more": false
}