Unusual Whales UnusualWhales API

Private Markets Investors for Company

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

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

id string
name string
Example: Microsoft
npm_ticker string
Example: OPENAI
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/investors" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "id": "string",
      "name": "Microsoft",
      "npm_ticker": "OPENAI"
    }
  ]
}