Calculators
Free cash flow to equity (FCFE) API
Free Cash Flow to Equity FCFE = NI + D&A - CapEx - ChangeNWC + NetBorrowing: the levered cash flow available to shareholders, the numerator for an equity DCF, with the echoed inputs. Answers 'compute FCFE','levered free cash flow','free cash flow to equity holders'.
Price$0.01per request
MethodPOST
Route/v1/calc/val-fcfe
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcvaluationfcfefree-cash-flowleveredequitydcffinance
API URL
Integration docshttps://x402.hexl.dev/v1/calc/val-fcfeExample request
{
"netIncome": 80,
"depreciation": 20,
"capex": 30,
"changeNWC": 10,
"netBorrowing": 15
}Example response
{
"fcfe": 75,
"formula": "FCFE = NI + D&A - CapEx - ChangeNWC + NetBorrowing",
"breakdown": {
"netIncome": 80,
"depreciation": 20,
"capex": 30,
"changeNWC": 10,
"netBorrowing": 15
}
}Input schema
{
"type": "object",
"required": [
"netIncome",
"depreciation",
"capex",
"changeNWC",
"netBorrowing"
],
"properties": {
"netIncome": {
"type": "number",
"examples": [
80
]
},
"depreciation": {
"type": "number",
"examples": [
20
]
},
"capex": {
"type": "number",
"examples": [
30
]
},
"changeNWC": {
"type": "number",
"examples": [
10
]
},
"netBorrowing": {
"type": "number",
"description": "New debt issued minus repayments",
"examples": [
15
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}