# Private Markets Investors for Company `GET` `https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/investors` Returns the disclosed investors for a single private-markets company, ordered alphabetically. 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 | | ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `limit` | integer | No | | | `offset` | integer | No | | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `id` | string | | | `name` | string | | | `npm_ticker` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/investors" \ -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}/investors", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "id": "string", "name": "Microsoft", "npm_ticker": "OPENAI" } ] } ```