Calculators
Free cash flow to firm (FCFF) API
Free Cash Flow to the Firm FCFF = EBIT*(1-Tc) + D&A - CapEx - ChangeNWC: the unlevered cash flow available to all capital providers, the standard numerator for an enterprise DCF, returning NOPAT and the echoed inputs. Answers 'compute FCFF','unlevered free cash flow','free cash flow to firm from EBIT'.
Price$0.01per request
MethodPOST
Route/v1/calc/val-fcff
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcvaluationfcfffree-cash-flowunleverednopatdcffinance
API URL
Integration docshttps://x402.hexl.dev/v1/calc/val-fcffExample request
{
"ebit": 100,
"taxRate": 0.21,
"depreciation": 20,
"capex": 30,
"changeNWC": 10
}Example response
{
"fcff": 59,
"nopat": 79,
"formula": "FCFF = EBIT*(1-Tc) + D&A - CapEx - ChangeNWC",
"breakdown": {
"ebit": 100,
"taxRate": 0.21,
"depreciation": 20,
"capex": 30,
"changeNWC": 10
}
}Input schema
{
"type": "object",
"required": [
"ebit",
"taxRate",
"depreciation",
"capex",
"changeNWC"
],
"properties": {
"ebit": {
"type": "number",
"examples": [
100
]
},
"taxRate": {
"type": "number",
"examples": [
0.21
]
},
"depreciation": {
"type": "number",
"description": "Depreciation & amortization",
"examples": [
20
]
},
"capex": {
"type": "number",
"description": "Capital expenditures",
"examples": [
30
]
},
"changeNWC": {
"type": "number",
"description": "Increase in net working capital",
"examples": [
10
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}