Calculators
SaaS ARR-multiple valuation calculator API
Compute enterprise value = ARR * multiple and equity value = EV - netDebt with a multiple-tier rating (>=15 premium, >=8 high, >=4 market, else discount) and breakdown. The standard ARR-multiple valuation method. Answers 'what is my SaaS company worth','what is my enterprise value at this ARR multiple','what is my equity value'.
Price$0.01per request
MethodPOST
Route/v1/calc/saas-valuation
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
saasvaluationarr-multipleenterprise-valuestartupfundraisingmetricscalc
API URL
Integration docshttps://x402.hexl.dev/v1/calc/saas-valuationExample request
{
"arr": 5000000,
"arrMultiple": 10,
"netDebt": 0
}Example response
{
"enterpriseValue": 50000000,
"equityValue": 50000000,
"impliedEvToArr": 10,
"multipleTier": "high",
"formula": "enterpriseValue = ARR * multiple ; equityValue = EV - netDebt",
"breakdown": {
"arr": 5000000,
"arrMultiple": 10,
"netDebt": 0
}
}Input schema
{
"type": "object",
"required": [
"arr",
"arrMultiple"
],
"properties": {
"arr": {
"type": "number",
"description": "annual recurring revenue (currency, > 0)",
"examples": [
5000000
]
},
"arrMultiple": {
"type": "number",
"description": "EV/ARR revenue multiple (> 0)",
"examples": [
10
]
},
"netDebt": {
"type": "number",
"description": "net debt to subtract for equity value (optional, currency)",
"examples": [
0
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}