Multiples API

Company Profile

Introduction

Returns the full profile for a single company: its identity and descriptive attributes, every public stock listing, and a compact deal-activity rollup. For publicly listed companies covered by our market-data feed it also includes a current valuation block and trailing/forward fundamentals. Use this endpoint to enrich a single company once you have its ID (from /companies or /companies/resolve).

Set up

Endpoint

GET https://multiples.vc/api/private/v1/companies/{id}

Request

The company ID goes in the path. Two optional query parameters are supported.

paramintypedescription
idpathuuidThe company ID. Required. Resolve names to IDs with /companies/resolve.
fieldsquerystringComma-separated allowlist of response fields to return. Defaults to all fields.
include_deletedquerybooleanWhen true, returns the company even if it has been soft-deleted (the response carries deleted: true). Defaults to false.

By default a soft-deleted company returns 404 NOT_FOUND. This keeps stale records out of normal reads. When reconciling against the change feed (which surfaces deletions), pass ?include_deleted=true so the deleted record is returned with deleted: true rather than 404.

Fetch a full profile:

GET /companies/6f331dee-e4e5-478c-89cd-1aedf66f9515

Fetch only the fields you need:

GET /companies/6f331dee-e4e5-478c-89cd-1aedf66f9515?fields=id,name,country,verticals,valuation

Include a soft-deleted record (for change-feed reconciliation):

GET /companies/6f331dee-e4e5-478c-89cd-1aedf66f9515?include_deleted=true

Response

Two responses possible depending on the company.

A public company (here, Salesforce) includes populated valuation and fundamentals blocks alongside its stock_listings. The stock_listings array is truncated below; primary_listing: true marks the main exchange listing.

{
  "data": {
    "id": "6f331dee-e4e5-478c-89cd-1aedf66f9515",
    "name": "Salesforce",
    "short_name": "Salesforce",
    "website": "https://www.salesforce.com",
    "linkedin": "https://linkedin.com/company/salesforce",
    "company_type": [
      "Public company"
    ],
    "ownership": "Publicly listed",
    "description": "Salesforce provides enterprise cloud computing solutions. The company offers customer relationship management technology that brings companies and customers together. Its Customer 360 platform helps the group deliver a single source of truth, connecting customer data across systems, apps, and devices to help companies sell, service, market, and conduct commerce. It also offers Service Cloud for customer support, Marketing Cloud for digital marketing campaigns, Commerce Cloud as an e-commerce engine, the Salesforce Platform, which allows enterprises to build applications, and other solutions, such as MuleSoft for data integration.",
    "verticals": [
      "Sales & Marketing Automation Software",
      "ERP Software",
      "Productivity Software",
      "Vertical AI Applications",
      "Artificial Intelligence"
    ],
    "themes": [
      "B2B SaaS",
      "Horizontal SaaS",
      "MarTech"
    ],
    "city": "San Francisco, CA",
    "country": "USA",
    "region": "North America",
    "area": "California",
    "founded": 1999,
    "ipoed": "2004-06-23",
    "ceo": "Mr. Marc Benioff",
    "employee_count": 76453,
    "revenue_model": [
      "Subscription",
      "Licensing"
    ],
    "client_focus": [
      "B2B"
    ],
    "active": true,
    "created_at": "2026-01-11T11:06:02.563888+00:00",
    "updated_at": "2026-06-12T23:32:03.413755+00:00",
    "deleted": false,
    "is_public": true,
    "stock_listing": {
      "id": "118704c4-de11-4831-8850-7cfcb84d75a0",
      "ticker": "CRM",
      "exchange": "NYS",
      "currency": "USD"
    },
    "valuation": {
      "market_cap": 124307.82,
      "enterprise_value": 154354.82,
      "price_to_book": 3.631082,
      "price_to_sales": 3.30033,
      "price_to_cash_flow": 9.285051,
      "price_to_free_cash_flow": 9.643202,
      "beta": 1.302664,
      "updated_at": null
    },
    "fundamentals": {
      "revenue_fy": 41525,
      "ebitda_fy": 17090.714285714286,
      "ev_revenue_ntm": 3.23,
      "ev_revenue_ltm": 3.5652,
      "ev_revenue_fy": 3.7172,
      "ev_ebitda_ntm": 7.9635,
      "ev_ebitda_ltm": 8.6954,
      "ev_ebitda_fy": 9.0315,
      "pe_ntm": 9.9568,
      "pe_ltm": 10.3527,
      "pe_fy": 10.3858,
      "ebitda_margin_ntm": 40.5601,
      "ebitda_margin_ltm": 41.0011,
      "ebitda_margin_fy": 41.1577,
      "revenue_growth_ntm_ltm": 10.3771,
      "revenue_growth_fy1_fy": 11.0339,
      "rule_of_40": 50.9004,
      "rule_of_40_ltm": 51.3782
    },
    "deal_activity": {
      "total_fundings_as_target": 0,
      "total_acquisitions_as_target": 0,
      "total_investments_made": 109,
      "last_funding_date": null,
      "last_deal_date": null
    }
  }
}

A private company (here, SFR) has no public listings, so stock_listings is empty and valuation and fundamentals are null. deal_activity is still populated for any company that has deals - for SFR it captures one funding round and three acquisitions as target.

{
  "data": {
    "id": "9e544d7f-c3a7-483b-b29d-e559f3b062dc",
    "name": "SFR",
    "short_name": "SFR",
    "website": "http://www.sfr.fr",
    "linkedin": "https://www.linkedin.com/company/hawthorn-suites-by-wyndh",
    "company_type": [
      "Private company"
    ],
    "ownership": "Acquired",
    "description": "SFR is a Paris-headquartered telecommunications provider operating France's second-largest mobile network and fixed broadband services. The company delivers postpaid and prepaid mobile plans, 5G connectivity, fiber internet up to 8 Gbps, and business data solutions to over 20 million customers. As part of the Altice France group, SFR maintains extensive coverage through 28,000 mobile sites and invests in nationwide fiber rollout, serving residential, enterprise, and wholesale segments.",
    "verticals": [
      "Telecom Service Providers"
    ],
    "themes": null,
    "city": "Paris",
    "country": "FRA",
    "region": "Western Europe",
    "area": null,
    "founded": 1987,
    "ipoed": null,
    "ceo": null,
    "employee_count": null,
    "revenue_model": [
      "Subscription"
    ],
    "client_focus": [
      "B2C",
      "B2B"
    ],
    "active": false,
    "created_at": "2026-02-27T19:17:04.545907+00:00",
    "updated_at": "2026-06-12T00:00:47.169432+00:00",
    "deleted": false,
    "is_public": false,
    "stock_listing": null,
    "valuation": null,
    "fundamentals": null,
    "deal_activity": {
      "total_fundings_as_target": 1,
      "total_acquisitions_as_target": 3,
      "total_investments_made": 0,
      "last_funding_date": "2019-03-27",
      "last_deal_date": "2026-06-08"
    }
  }
}

Fields

Identity & descriptive

fieldtypedescription
iduuidCompany ID.
namestring | nullCompany display name.
short_namestring | nullShort / common name.
descriptionstring | nullFree-text business description.
websitestring | nullCompany website URL.
linkedinstring | nullLinkedIn company page URL.
countrystring | nullISO 3166-1 alpha-3 country code.
regionstring | nullGeographic region.
citystring | nullCity.
areastring | nullSub-national area (e.g. state or province).
foundedinteger | nullFounding year.
verticalsstring[] | nullVertical tags.
themesstring[] | nullTheme tags.
client_focusstring[] | nullClient focus tags (e.g. B2B, B2C).
revenue_modelstring[] | nullRevenue model tags (e.g. Subscription, Licensing).
company_typestring[] | nullCompany type tags (e.g. Public company, Private company).
ownershipstring | nullOwnership status (e.g. Publicly listed, Privately held, Acquired).
activeboolean | nullWhether the company is currently active.
ipoedstring (date) | nullIPO date, if applicable.
ceostring | nullChief executive name.
employee_countinteger | nullApproximate number of employees (this detail endpoint only).
is_publicbooleantrue if the company has at least one public stock listing.
created_atstring (date-time)Record creation timestamp (UTC).
updated_atstring (date-time)Timestamp of the last update to this record (UTC).
deletedbooleantrue if the company has been soft-deleted. Returned (with deleted: true) only when ?include_deleted=true; otherwise it 404s.

Stock listing - stock_listing

The company's primary stock listing. null for private companies (and for any public company with no resolvable primary listing).

fieldtypedescription
stock_listing.iduuidListing ID.
stock_listing.tickerstringTicker symbol on the primary exchange.
stock_listing.exchangestringExchange code.
stock_listing.currencystring | nullTrading currency.

Valuation - valuation

Current market valuation and trading metrics. Available for publicly listed companies covered by our market-data feed; null for private companies and for listed companies outside that coverage.

fieldtypedescription
valuation.market_capnumber | nullMarket capitalisation (millions USD).
valuation.enterprise_valuenumber | nullEnterprise value (millions USD).
valuation.price_to_booknumber | nullPrice-to-book ratio.
valuation.price_to_salesnumber | nullPrice-to-sales ratio.
valuation.price_to_cash_flownumber | nullPrice-to-cash-flow ratio.
valuation.price_to_free_cash_flownumber | nullPrice-to-free-cash-flow ratio.
valuation.betanumber | nullBeta (volatility relative to the market).
valuation.updated_atstring (date-time) | nullReserved for a valuation-refresh timestamp; currently always null.

Fundamentals - fundamentals

Compact current fiscal-year (FY), trailing (LTM), and forward (NTM) fundamentals and valuation multiples. Available for publicly listed companies covered by our market-data feed; null otherwise.

fieldtypedescription
fundamentals.revenue_fynumber | nullCurrent fiscal-year (FY) revenue (millions USD).
fundamentals.ebitda_fynumber | nullCurrent fiscal-year (FY) EBITDA (millions USD).
fundamentals.ev_revenue_ntmnumber | nullEV / NTM revenue multiple.
fundamentals.ev_revenue_ltmnumber | nullEV / LTM revenue multiple.
fundamentals.ev_revenue_fynumber | nullEV / current fiscal-year revenue multiple.
fundamentals.ev_ebitda_ntmnumber | nullEV / NTM EBITDA multiple.
fundamentals.ev_ebitda_ltmnumber | nullEV / LTM EBITDA multiple.
fundamentals.ev_ebitda_fynumber | nullEV / current fiscal-year EBITDA multiple.
fundamentals.pe_ntmnumber | nullNTM price-to-earnings ratio.
fundamentals.pe_ltmnumber | nullLTM price-to-earnings ratio.
fundamentals.pe_fynumber | nullCurrent fiscal-year price-to-earnings ratio.
fundamentals.ebitda_margin_ntmnumber | nullNTM EBITDA margin (percentage points).
fundamentals.ebitda_margin_ltmnumber | nullLTM EBITDA margin (percentage points).
fundamentals.ebitda_margin_fynumber | nullCurrent fiscal-year EBITDA margin (percentage points).
fundamentals.revenue_growth_ntm_ltmnumber | nullRevenue growth from LTM to NTM (percentage points).
fundamentals.revenue_growth_fy1_fynumber | nullRevenue growth from the current fiscal year (FY) to the next (FY+1), in percentage points.
fundamentals.rule_of_40number | nullRule of 40 (revenue growth + EBITDA margin).
fundamentals.rule_of_40_ltmnumber | nullRule of 40 (revenue growth + EBITDA margin) on a trailing-twelve-months (LTM) basis.

Deal activity - deal_activity

Summary of the company's transaction activity. Always present, even for companies with no deals (counts are 0, dates are null).

fieldtypedescription
deal_activity.total_fundings_as_targetintegerNumber of funding rounds where this company was the target.
deal_activity.total_acquisitions_as_targetintegerNumber of acquisitions where this company was the target.
deal_activity.total_investments_madeintegerNumber of investments this company has made.
deal_activity.last_funding_datestring (date) | nullDate of the most recent funding round as target.
deal_activity.last_deal_datestring (date) | nullDate of the most recent deal in which this company was the target (funding round or acquisition). Deals it made as a buyer/investor are not counted here.

For the full underlying transactions, see

  • /companies/{id}/fundings

  • /companies/{id}/sellside

  • /companies/{id}/buyside

  • /companies/{id}/investors

On this page