# Private Markets Investor Profile `GET` `https://api.unusualwhales.com/api/private-markets/investors/{name}` Returns the portfolio of companies for a specific investor (by name). This is a premium endpoint. Contact dev@unusualwhales.com to request access. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `name` | string | Yes | The investor's name (URL-encoded). | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `companies` | array[Private Markets Company] | | | `name` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/private-markets/investors/{name}" \ -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/investors/{name}", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "companies": [ null ], "name": "Sequoia Capital" } } ```