Private Markets Funding Rounds
GET
https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/funding
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
npm_ticker
string
required
Query Parameters
limit
integer
optional
offset
integer
optional
Responses
200 422 500Response Body 200 OK
financing_round
string
Example:
Series E
id
string
investment_amount
number
Example:
6600000000
investment_date
string
npm_ticker
string
Example:
OPENAI
Try It
GET
Path Parameters
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/private-markets/companies/{npm_ticker}/funding" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"financing_round": "Series E",
"id": "string",
"investment_amount": 6600000000,
"investment_date": "string",
"npm_ticker": "OPENAI"
}
]
}