Integrate Multiples Data Into Your Workflows

Access public and private valuation data - including consensus estimates, historical valuations, M&A multiples, VC transactions and more via Multiples API.

See documentation

All stock fundamental data with consensus analyst estimates — 130+ fields per company, across valuation multiples, growth, margin and efficiency ratios.

POST/api/v2/companies/current
200 OK
{
"data": [
{
// identity
"sku": "MSFT-USA",
"ticker": "MSFT",
"exchange": "NAS",
"name": "Microsoft Corporation",
"shortName": "Microsoft",
"webUrl": "https://www.microsoft.com",
"countryCodeIso3": "USA",
"country": "United States",
"currency": "USD",
"ceo": "Mr. Satya Nadella",
"employees": 228000,
"yearFounded": 1975,
"yearIpo": 1986,
"tags": ["Enterprise Software", "Cloud Infrastructure"],
"themes": ["B2B SaaS"],
// valuation
"lastPrice": 389.1,
"marketCap": 2890000,
"enterpriseValue": 2850000,
"netDebtLtm": -40000,
"stockBeta": 0.9,
// multiples
"evRevenueLtm": 10.9,
"evRevenueNtm": 9.7,
"evEbitdaLtm": 21.9,
"evEbitdaNtm": 19.4,
"evEbitLtm": 24.4,
"evGrossProfitLtm": 15.8,
"evFcfLtm": 38.5,
"priceEarningsLtm": 31.2,
"priceEarningsNtm": 27.8,
"priceToBook": 10.9,
"priceToFreeCashFlow": 39.0,
// growth & margins
"revenueGrowthNtmLtm": 12.5,
"ebitdaGrowthNtmLtm": 13.1,
"marginGrossLtm": 68.8,
"marginEbitdaLtm": 49.7,
"marginEbitLtm": 44.7,
"marginNetLtm": 35.4,
"marginFcfLtm": 28.3,
// efficiency & composites
"evRevenueGrowthAdjNtmLtm": 0.87,
"ruleOf40Ltm": 62.2,
"ruleOf40": 58.1,
"ruleOfX": 53.3,
"revenuePerFte": 1.15,
"opexPerFte": 0.28
// … Ntm / Fy variants of the above, 130+ fields total
}
],
"meta": { "count": 1 }
}

Powering the world's leading investors, companies and data products

World's most prominent VCs, financial software providers and deal teams use the Multiples API.

Vestberry

Public valuation benchmarks inside Vestberry’s VC portfolio-management platform.

Dealroom

The public multiples intelligence behind Dealroom’s ecosystem data.

One Peak

Runs Pulse, One Peak’s internal data platform for backing outlier software companies.

Altea Partners

Custom comps and deal workflows, wired into how Altea’s bankers work.

Open Opportunity Fund

Automated portfolio reporting, delivered straight into Google Sheets.

Robust and reliable financial data API

Institutional-grade financial data powered by FactSet and Morningstar, with the ergonomics of a modern developer product.

130+ metrics across both APIs

Valuation multiples, fundamentals, growth rates, margins and SaaS efficiency — plus deal multiples, round valuations and investor stats.

EV / Revenue (NTM)
Deal EV / Revenue
EV / EBITDA (LTM)
Post-money valuation
Rule of 40
P / E (NTM)
Market cap
Revenue growth
Amount raised
EV / Gross profit
Median round valuation
FCF margin
Co-investors
Revenue per FTE
Rule of X
Deal EV / EBITDA
EBITDA margin
Avg round size
Net debt
Deals last 12m
Forward estimates

Simple authentication

One bearer header token for both public and private endpoints.

Authorization: Bearer mpl_live_••••

Built in point-in-time machine

One extra field replays any month back to 2020, computed with that month's FX rates.

// today
POST /v2/companies/current
{ "skus": ["ZM-USA"] }
 
→ { "evRevenueLtm": 4.2 }
 
// same call, November 2021
{ "skus": ["ZM-USA"],
"asOfDate": "2021-11" }
 
→ { "evRevenueLtm": 17.4 }

No SDK required

Plain REST and JSON with OpenAPI 3 specs — generate a typed client in any language.

OpenAPI 3

Production plumbing included

The parts of a data integration you would otherwise build yourself.

200 req/minStable company IDsField selectionPagination + has_moreupdated_at change feedSoft deletesTyped error codesMonthly history since 2016

Two APIs, one platform

Access public companies API and private data endpoints with the same key format, same envelope, and same conventions.

Public Data API

All relevant public companies globally

POST/api/v2/companies
POST/api/v2/companies/current
POST/api/v2/companies/time-series
POST/api/v2/groups/current
POST/api/v2/groups/time-series
POST/api/v1/companies
Public API docs
Private Data API

Complete M&A and VC coverage

POST/api/private/v1/companies
GET/api/private/v1/companies/{id}
POST/api/private/v1/transactions
POST/api/private/v1/transactions/aggregate
POST/api/private/v1/investors
GET/api/private/v1/investors/{id}/portfolio
Private API docs

Got questions about Multiples API?

Quick answers on access, limits and formats. For full documentation, click here.

Build on the Multiples API

From first key to production in an afternoon. Schedule a call to scope access — public comps, private multiples, or both.

See documentation
$ curl multiples.vc/api/v2/companies/current \
-d '{ "skus": ["MSFT-USA"] }'
 
{
"evRevenueLtm": 10.9,
"evEbitdaLtm": 21.9,
"ruleOf40Ltm": 62.2
}