# Private Markets Pricing History `GET` `https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/pricing` Returns historical implied per-share pricing for a single private-markets company. 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 | |------|------|----------|-------------| | `start_date` | string | No | Inclusive lower bound on pricing date (ISO 8601). | | `end_date` | string | No | Inclusive upper bound on pricing date (ISO 8601). | | `limit` | integer | No | | | `offset` | integer | No | | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `date` | string | | | `id` | string | | | `npm_ticker` | string | | | `price` | number | Implied per-share price for the company on this date. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/pricing" \ -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}/pricing", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "date": "string", "id": "string", "npm_ticker": "OPENAI", "price": 0.0 } ] } ```