Unusual Whales UnusualWhales API

Top Private Markets Investors

GET https://api.unusualwhales.com/api/private-markets/investors

Request

Security: Bearer Auth Authorization: Bearer <token>

Query Parameters

limit integer optional
offset integer optional

Responses

200 422 500

Response Body 200 OK

company_count integer

Distinct number of companies this investor has backed.

Example: 14
name string
Example: Sequoia Capital
Try It GET
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/private-markets/investors" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "company_count": 14,
      "name": "Sequoia Capital"
    }
  ]
}