Unusual Whales UnusualWhales API

Private Markets Management

GET https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/management

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

npm_ticker string required

Query Parameters

limit integer optional
offset integer optional

Responses

200 422 500

Response Body 200 OK

first_name string
Example: Sam
id string
last_name string
Example: Altman
npm_ticker string
Example: OPENAI
title string
Example: CEO
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/management" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "first_name": "Sam",
      "id": "string",
      "last_name": "Altman",
      "npm_ticker": "OPENAI",
      "title": "CEO"
    }
  ]
}