Catalog/saas-arr-growth

Calculators

ARR growth rate and CAGR calculator API

Compute period-over-period ARR growth = (endARR - startARR) / startARR and optional CAGR = (endARR/startARR)^(1/periods) - 1 with absolute growth and breakdown. Compounded-growth math LLMs misstate. Answers 'what is my ARR growth rate','what is my ARR CAGR','how fast did my ARR grow'.

Price$0.01per request
MethodPOST
Route/v1/calc/saas-arr-growth
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
saasarrgrowthcagrstartupmetricsrevenuecalc
API URLhttps://x402.hexl.dev/v1/calc/saas-arr-growth
Integration docs
Example request
{
  "startArr": 1000000,
  "endArr": 2500000,
  "periods": 2
}
Example response
{
  "growthRate": 1.5,
  "growthRatePercent": 150,
  "absoluteGrowth": 1500000,
  "formula": "growth = (endARR - startARR) / startARR",
  "breakdown": {
    "startArr": 1000000,
    "endArr": 2500000
  },
  "cagr": 0.5811,
  "cagrPercent": 58.11,
  "periods": 2
}
Input schema
{
  "type": "object",
  "required": [
    "startArr",
    "endArr"
  ],
  "properties": {
    "startArr": {
      "type": "number",
      "description": "starting ARR (currency, > 0)",
      "examples": [
        1000000
      ]
    },
    "endArr": {
      "type": "number",
      "description": "ending ARR (currency, > 0)",
      "examples": [
        2500000
      ]
    },
    "periods": {
      "type": "number",
      "description": "number of periods for CAGR (optional)",
      "examples": [
        2
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}