Search Private Markets
GET
https://api.unusualwhales.com/api/private-markets/search
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Query Parameters
query
string
required
Search string (case-insensitive substring match).
limit
integer
optional
Default:
10
>= 1
<= 50
Responses
200 422 500Response Body 200 OK
companies
array[Private Markets Search Hit (Company)]
investors
array[Private Markets Search Hit (Investor)]
Try It
GET
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/private-markets/search?query=VALUE" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": {
"companies": [
null
],
"investors": [
null
]
}
}