Catalog/val-comparable-multiples

Calculators

Comparable-multiples valuation API

Comparable-company valuation value = targetMetric * peerMultiple, applying the mean or median of a peer-multiple set to the target's metric, with mean/median/min/max statistics. Deterministic and auditable. Answers 'value this company off peer multiples','implied value from comparable P/E','median EV/sales valuation'.

Price$0.01per request
MethodPOST
Route/v1/calc/val-comparable-multiples
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcvaluationcomparablesmultiplepeersrelative-valuationmedianfinance
API URLhttps://x402.hexl.dev/v1/calc/val-comparable-multiples
Integration docs
Example request
{
  "targetMetric": 50,
  "peerMultiples": [
    8,
    10,
    12,
    14
  ],
  "method": "median",
  "metricName": "EBITDA"
}
Example response
{
  "impliedValue": 550,
  "appliedMultiple": 11,
  "method": "median",
  "metricName": "EBITDA",
  "formula": "value = targetMetric * peerMultiple",
  "breakdown": {
    "mean": 11,
    "median": 11,
    "peerCount": 4,
    "min": 8,
    "max": 14
  }
}
Input schema
{
  "type": "object",
  "required": [
    "targetMetric",
    "peerMultiples"
  ],
  "properties": {
    "targetMetric": {
      "type": "number",
      "description": "The target's metric (e.g. EBITDA, earnings, sales)",
      "examples": [
        50
      ]
    },
    "peerMultiples": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "Observed multiples of comparable companies",
      "examples": [
        [
          8,
          10,
          12,
          14
        ]
      ]
    },
    "method": {
      "type": "string",
      "enum": [
        "mean",
        "median"
      ],
      "default": "median"
    },
    "metricName": {
      "type": "string",
      "examples": [
        "EBITDA"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}