Unusual Whales UnusualWhales API

Insiders

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

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Responses

200

Response Body 200 OK

cik Insider CIK

The insider's CIK (Central Index Key).

Example: 0000902015
id Insider ID

The insider's ID.

Example: 1
is_person Insider Is Person

Whether the insider is a person. False if the insider is a fund, LLC, etc.

Example: true
logo_url Insider Logo URL

The URL to the insider's logo.

Example: https://example.com/logo.png
name Insider Name

The name of the insider.

Example: John Doe
name_slug Insider Name Slug

The slugified name of the insider.

Example: john-doe
social_links Insider Social Links

The social links of the insider.

Example: ["https://twitter.com/johndoe"]
ticker Stock Ticker

The stock ticker.

Example: AAPL
Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/insider/{ticker}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "cik": "0001823951",
      "display_name": "KARP ALEXANDER",
      "id": 10343,
      "is_person": true,
      "logo_url": "https://storage.googleapis.com/uwassets/insiders/10343",
      "name": "KARP ALEXANDER",
      "name_slug": "karp-alexander",
      "ticker": "PLTR"
    }
  ]
}