Investor Profile
Introduction
Returns a full profile for a single investor, identified by its UUID, together with a rollup of activity statistics across every deal the firm has participated in. Use it to enrich an investor record with descriptive attributes (location, type, focus) and to surface headline deal metrics such as total deal count, recent activity, median valuation multiples, and the firm's most common deal types, countries, and verticals. Pair it with the investor's /investments, /co_investors, and /portfolio endpoints for the underlying deal-level detail.
Set up
Endpoint
GET https://multiples.vc/api/private/v1/investors/{id}
Request - the investor's UUID is supplied as a path parameter. There is no request body. Two optional query parameters are supported: fields (a comma-separated allowlist of response fields) and include_deleted (boolean, default false; when true a soft-deleted investor is returned with deleted: true instead of a 404).
|
field |
type |
description |
|---|---|---|
|
|
string (uuid) |
Path parameter. The investor's unique identifier. Required. |
|
|
string |
Query parameter. Comma-separated allowlist of response fields to return. Optional. |
|
|
boolean |
Query parameter. Default |
Example call:
GET https://multiples.vc/api/private/v1/investors/9918f9bb-0d74-434d-9029-a44cbee87637
Response - a single data object containing the investor's profile fields and a nested stats block. (Absent values are returned as null; the top_countries and top_verticals arrays each return up to five entries.)
{
"data": {
"id": "9918f9bb-0d74-434d-9029-a44cbee87637",
"name": "Sequoia Capital",
"short_name": "Sequoia Capital",
"website": "http://www.sequoiacap.com",
"linkedin": "http://www.linkedin.com/company/sequoia",
"company_type": [
"Venture capital"
],
"ownership": "Privately held",
"description": "Sequoia Capital is a venture capital firm headquartered in Menlo Park, California, with operations in the United States, China, India, and Southeast Asia. Founded in 1972, it invests in seed through growth-stage companies across sectors like consumer internet, enterprise software, healthcare, and semiconductors. The firm has backed transformative businesses including Apple, Google, WhatsApp, Airbnb, Stripe, NVIDIA, and DoorDash, achieving landmark returns from initial public offerings and acquisitions. Sequoia Capital maintains separate funds for U.S., China, and India ecosystems, supporting founders in building enduring technology leaders.",
"verticals": [
"PE & VC"
],
"themes": null,
"city": "San Francisco, CA",
"country": "USA",
"region": "North America",
"area": "California",
"founded": 1972,
"ipoed": null,
"ceo": null,
"employee_count": null,
"revenue_model": [
"Investment management"
],
"client_focus": [
"B2B"
],
"active": false,
"created_at": "2026-02-27T19:16:25.527791+00:00",
"updated_at": "2026-02-27T19:16:25.527791+00:00",
"deleted": false,
"is_public": false,
"stats": {
"total_deals": 1445,
"deals_last_12m": 113,
"avg_round_size": 166.55930555555545,
"median_valuation": 1000,
"median_ev_revenue": 15.987220447284345,
"median_ev_ebitda": 33.80589430894309,
"most_common_deal_type": "Venture",
"most_common_deal_subtype": "Series A",
"top_countries": [
{
"country": "USA",
"count": 1013
},
{
"country": "IND",
"count": 109
},
{
"country": "CHN",
"count": 65
},
{
"country": "GBR",
"count": 36
},
{
"country": "DEU",
"count": 27
}
],
"top_verticals": [
{
"vertical": "Artificial Intelligence",
"count": 144
},
{
"vertical": "Pure-Play AI Software",
"count": 132
},
{
"vertical": "BI & Analytics Software",
"count": 129
},
{
"vertical": "Cybersecurity",
"count": 126
},
{
"vertical": "Developer Tools",
"count": 86
}
]
}
}
}
Fields
Identity
|
field |
type |
description |
|---|---|---|
|
|
string (uuid) |
Unique identifier for the investor. |
|
|
string | null |
Investor display name. |
|
|
string | null |
Shortened or display name. |
|
|
string | null |
Free-text overview of the firm. |
|
|
string | null |
Primary website URL. |
|
|
string | null |
LinkedIn company page URL. |
Classification & location
|
field |
type |
description |
|---|---|---|
|
|
string[] | null |
Entity type(s), e.g. "Venture capital". |
|
|
string | null |
Ownership status, e.g. "Privately held". |
|
|
string[] | null |
Industry verticals the firm is tagged with. |
|
|
string[] | null |
Thematic tags. |
|
|
string[] | null |
Target client segments, e.g. "B2B". |
|
|
string[] | null |
Revenue model(s), e.g. "Investment management". |
|
|
string | null |
ISO 3166-1 alpha-3 country code. |
|
|
string | null |
Geographic region. |
|
|
string | null |
City. |
|
|
string | null |
Sub-national area (state/province). |
|
|
integer | null |
Founding year. |
|
|
string | null |
Name of the chief executive. |
|
|
integer | null |
Approximate number of employees (often null for investment firms). |
Status & metadata
|
field |
type |
description |
|---|---|---|
|
|
boolean | null |
Whether the firm is currently active. |
|
|
string (date) | null |
IPO date, if the firm is itself publicly listed. |
|
|
boolean |
True if the firm has at least one public stock listing. |
|
|
string (date-time) |
When the record was created (UTC). |
|
|
string (date-time) |
Timestamp of the last update to this record (UTC). |
|
|
boolean |
|
Activity statistics (stats)
Activity statistics across all deals this investor participated in.
|
field |
type |
description |
|---|---|---|
|
|
integer |
Total number of deals the investor has participated in. |
|
|
integer |
Number of those deals dated in the last 12 months. |
|
|
number | null |
Millions USD - average amount raised across deals. |
|
|
number | null |
Millions USD - median deal valuation. |
|
|
number | null |
Median EV / revenue multiple across deals. |
|
|
number | null |
Median EV / EBITDA multiple across deals. |
|
|
string | null |
Most frequent deal type (e.g. "Venture", "Growth"). |
|
|
string | null |
Most frequent deal subtype (e.g. "Series A"). |
|
|
array (max 5) |
Most common target countries, each |
|
|
string |
ISO 3166-1 alpha-3 country code. |
|
|
integer |
Number of deals in that country. |
|
|
array (max 5) |
Most common target verticals, each |
|
|
string |
Vertical name. |
|
|
integer |
Number of deals in that vertical. |

