# Private Markets Company Profile `GET` `https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}` Returns a profile for a single private-markets company including the latest pricing tick, total funding raised across known rounds, and the count of disclosed investors. This is a premium endpoint. Contact dev@unusualwhales.com to request access. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `npm_ticker` | string | Yes | Nasdaq Private Markets ticker (e.g. "OPENAI"). | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `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. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/private-markets/companies/{npm_ticker}", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "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 } } ```