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

id

string (uuid)

Path parameter. The investor's unique identifier. Required.

fields

string

Query parameter. Comma-separated allowlist of response fields to return. Optional.

include_deleted

boolean

Query parameter. Default false; when true a soft-deleted investor is returned with deleted: true instead of a 404. Optional.

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

id

string (uuid)

Unique identifier for the investor.

name

string | null

Investor display name.

short_name

string | null

Shortened or display name.

description

string | null

Free-text overview of the firm.

website

string | null

Primary website URL.

linkedin

string | null

LinkedIn company page URL.

Classification & location

field

type

description

company_type

string[] | null

Entity type(s), e.g. "Venture capital".

ownership

string | null

Ownership status, e.g. "Privately held".

verticals

string[] | null

Industry verticals the firm is tagged with.

themes

string[] | null

Thematic tags.

client_focus

string[] | null

Target client segments, e.g. "B2B".

revenue_model

string[] | null

Revenue model(s), e.g. "Investment management".

country

string | null

ISO 3166-1 alpha-3 country code.

region

string | null

Geographic region.

city

string | null

City.

area

string | null

Sub-national area (state/province).

founded

integer | null

Founding year.

ceo

string | null

Name of the chief executive.

employee_count

integer | null

Approximate number of employees (often null for investment firms).

Status & metadata

field

type

description

active

boolean | null

Whether the firm is currently active.

ipoed

string (date) | null

IPO date, if the firm is itself publicly listed.

is_public

boolean

True if the firm has at least one public stock listing.

created_at

string (date-time)

When the record was created (UTC).

updated_at

string (date-time)

Timestamp of the last update to this record (UTC).

deleted

boolean

true if the investor has been soft-deleted. Returned (with deleted: true) only when ?include_deleted=true; otherwise it 404s.

Activity statistics (stats)

Activity statistics across all deals this investor participated in.

field

type

description

stats.total_deals

integer

Total number of deals the investor has participated in.

stats.deals_last_12m

integer

Number of those deals dated in the last 12 months.

stats.avg_round_size

number | null

Millions USD - average amount raised across deals.

stats.median_valuation

number | null

Millions USD - median deal valuation.

stats.median_ev_revenue

number | null

Median EV / revenue multiple across deals.

stats.median_ev_ebitda

number | null

Median EV / EBITDA multiple across deals.

stats.most_common_deal_type

string | null

Most frequent deal type (e.g. "Venture", "Growth").

stats.most_common_deal_subtype

string | null

Most frequent deal subtype (e.g. "Series A").

stats.top_countries

array (max 5)

Most common target countries, each { country, count }.

stats.top_countries[].country

string

ISO 3166-1 alpha-3 country code.

stats.top_countries[].count

integer

Number of deals in that country.

stats.top_verticals

array (max 5)

Most common target verticals, each { vertical, count }.

stats.top_verticals[].vertical

string

Vertical name.

stats.top_verticals[].count

integer

Number of deals in that vertical.