Calculators
EV/EBITDA implied value API
EV/EBITDA implied valuation EV = multiple*EBITDA, with optional netDebt and shares to bridge to equity value and value per share. Deterministic and auditable. Answers 'enterprise value at 8x EBITDA','implied equity value from EV/EBITDA','price per share from an EBITDA multiple'.
Price$0.01per request
MethodPOST
Route/v1/calc/val-ev-ebitda
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcvaluationev-ebitdamultipleenterprise-valuecomparablesequityfinance
API URL
Integration docshttps://x402.hexl.dev/v1/calc/val-ev-ebitdaExample request
{
"ebitda": 50,
"multiple": 8,
"netDebt": 100,
"shares": 10
}Example response
{
"enterpriseValue": 400,
"formula": "EV = EV/EBITDA multiple * EBITDA",
"breakdown": {
"ebitda": 50,
"multiple": 8
},
"equityValue": 300,
"valuePerShare": 30
}Input schema
{
"type": "object",
"required": [
"ebitda",
"multiple"
],
"properties": {
"ebitda": {
"type": "number",
"examples": [
50
]
},
"multiple": {
"type": "number",
"description": "EV/EBITDA multiple",
"examples": [
8
]
},
"netDebt": {
"type": "number",
"examples": [
100
]
},
"shares": {
"type": "number",
"examples": [
10
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}