Unusual Whales UnusualWhales API

Private Markets Company Profile

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

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

npm_ticker string required

Nasdaq Private Markets ticker (e.g. "OPENAI").

Responses

200 404 422 500

Response Body 200 OK

company Private Markets Company
investor_count integer

Number of distinct disclosed investors.

latest_price object

Most recent recorded pricing tick for the company.

total_funding number

Sum of all known funding-round investment amounts.

Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": {
    "company": {
      "description": "string",
      "doing_business_as": "string",
      "headquarters": "San Francisco, CA",
      "id": "string",
      "marketing_url": "https://openai.com"
    },
    "investor_count": 0,
    "latest_price": null,
    "total_funding": 0.0
  }
}