Calculators
Net-new MRR and SaaS quick ratio calculator API
Compute net-new MRR = new + expansion - contraction - churn and the SaaS Quick Ratio = (new+expansion)/(contraction+churn) with a rating (>4 best-in-class, >2 healthy, >1 growing, else shrinking) and breakdown. Answers 'what is my net new MRR','what is my SaaS quick ratio','is my growth efficient'.
Price$0.01per request
MethodPOST
Route/v1/calc/saas-expansion-revenue
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
saasexpansionquick-ratiomrrstartupmetricsgrowthcalc
API URL
Integration docshttps://x402.hexl.dev/v1/calc/saas-expansion-revenueExample request
{
"newMrr": 10000,
"expansionMrr": 5000,
"contractionMrr": 2000,
"churnedMrr": 3000
}Example response
{
"netNewMrr": 10000,
"quickRatio": 3,
"rating": "healthy",
"formula": "netNewMRR = new + expansion - contraction - churn ; quickRatio = (new+expansion)/(contraction+churn)",
"breakdown": {
"newMrr": 10000,
"expansionMrr": 5000,
"contractionMrr": 2000,
"churnedMrr": 3000,
"gained": 15000,
"lost": 5000
}
}Input schema
{
"type": "object",
"required": [
"newMrr",
"expansionMrr",
"contractionMrr",
"churnedMrr"
],
"properties": {
"newMrr": {
"type": "number",
"description": "new-logo MRR added (currency)",
"examples": [
10000
]
},
"expansionMrr": {
"type": "number",
"description": "expansion/upsell MRR (currency)",
"examples": [
5000
]
},
"contractionMrr": {
"type": "number",
"description": "downgrade/contraction MRR (currency)",
"examples": [
2000
]
},
"churnedMrr": {
"type": "number",
"description": "churned MRR (currency)",
"examples": [
3000
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}