Multiples API

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).

fieldtypedescription
idstring (uuid)Path parameter. The investor's unique identifier. Required.
fieldsstringQuery parameter. Comma-separated allowlist of response fields to return. Optional.
include_deletedbooleanQuery 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

fieldtypedescription
idstring (uuid)Unique identifier for the investor.
namestring | nullInvestor display name.
short_namestring | nullShortened or display name.
descriptionstring | nullFree-text overview of the firm.
websitestring | nullPrimary website URL.
linkedinstring | nullLinkedIn company page URL.

Classification & location

fieldtypedescription
company_typestring[] | nullEntity type(s), e.g. "Venture capital".
ownershipstring | nullOwnership status, e.g. "Privately held".
verticalsstring[] | nullIndustry verticals the firm is tagged with.
themesstring[] | nullThematic tags.
client_focusstring[] | nullTarget client segments, e.g. "B2B".
revenue_modelstring[] | nullRevenue model(s), e.g. "Investment management".
countrystring | nullISO 3166-1 alpha-3 country code.
regionstring | nullGeographic region.
citystring | nullCity.
areastring | nullSub-national area (state/province).
foundedinteger | nullFounding year.
ceostring | nullName of the chief executive.
employee_countinteger | nullApproximate number of employees (often null for investment firms).

Status & metadata

fieldtypedescription
activeboolean | nullWhether the firm is currently active.
ipoedstring (date) | nullIPO date, if the firm is itself publicly listed.
is_publicbooleanTrue if the firm has at least one public stock listing.
created_atstring (date-time)When the record was created (UTC).
updated_atstring (date-time)Timestamp of the last update to this record (UTC).
deletedbooleantrue 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.

fieldtypedescription
stats.total_dealsintegerTotal number of deals the investor has participated in.
stats.deals_last_12mintegerNumber of those deals dated in the last 12 months.
stats.avg_round_sizenumber | nullMillions USD - average amount raised across deals.
stats.median_valuationnumber | nullMillions USD - median deal valuation.
stats.median_ev_revenuenumber | nullMedian EV / revenue multiple across deals.
stats.median_ev_ebitdanumber | nullMedian EV / EBITDA multiple across deals.
stats.most_common_deal_typestring | nullMost frequent deal type (e.g. "Venture", "Growth").
stats.most_common_deal_subtypestring | nullMost frequent deal subtype (e.g. "Series A").
stats.top_countriesarray (max 5)Most common target countries, each { country, count }.
stats.top_countries[].countrystringISO 3166-1 alpha-3 country code.
stats.top_countries[].countintegerNumber of deals in that country.
stats.top_verticalsarray (max 5)Most common target verticals, each { vertical, count }.
stats.top_verticals[].verticalstringVertical name.
stats.top_verticals[].countintegerNumber of deals in that vertical.

On this page