Unusual Whales UnusualWhales API

Private Markets Pricing History

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

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

npm_ticker string required

Query Parameters

start_date string optional

Inclusive lower bound on pricing date (ISO 8601).

end_date string optional

Inclusive upper bound on pricing date (ISO 8601).

limit integer optional
offset integer optional

Responses

200 422 500

Response Body 200 OK

date string
id string
npm_ticker string
Example: OPENAI
price number

Implied per-share price for the company on this date.

Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/pricing" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "date": "string",
      "id": "string",
      "npm_ticker": "OPENAI",
      "price": 0.0
    }
  ]
}