Catalog/biz-ebitda-margin

Calculators

EBITDA & EBITDA margin API

EBITDA = netIncome + interest + taxes + depreciation + amortization, with EBITDA margin = EBITDA/revenue and a per-add-back breakdown — the standard cash-earnings proxy. Answers 'what's my EBITDA', 'what's my EBITDA margin', 'what's my operating cash earnings'.

Price$0.01per request
MethodPOST
Route/v1/calc/biz-ebitda-margin
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcebitdaebitda-marginearningsprofitabilityvaluationopsfinance
API URLhttps://x402.hexl.dev/v1/calc/biz-ebitda-margin
Integration docs
Example request
{
  "netIncome": 60000,
  "interest": 15000,
  "taxes": 20000,
  "depreciation": 25000,
  "amortization": 5000,
  "revenue": 500000
}
Example response
{
  "formula": "EBITDA = netIncome + interest + taxes + depreciation + amortization",
  "ebitda": 125000,
  "ebitdaMarginPercent": 25,
  "rating": "strong",
  "breakdown": [
    {
      "factor": "netIncome",
      "value": 60000
    },
    {
      "factor": "interest",
      "value": 15000
    },
    {
      "factor": "taxes",
      "value": 20000
    },
    {
      "factor": "depreciation",
      "value": 25000
    },
    {
      "factor": "amortization",
      "value": 5000
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "netIncome",
    "interest",
    "taxes",
    "depreciation",
    "amortization",
    "revenue"
  ],
  "properties": {
    "netIncome": {
      "type": "number",
      "examples": [
        60000
      ]
    },
    "interest": {
      "type": "number",
      "examples": [
        15000
      ]
    },
    "taxes": {
      "type": "number",
      "examples": [
        20000
      ]
    },
    "depreciation": {
      "type": "number",
      "examples": [
        25000
      ]
    },
    "amortization": {
      "type": "number",
      "examples": [
        5000
      ]
    },
    "revenue": {
      "type": "number",
      "examples": [
        500000
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}