Catalog/val-eva

Calculators

Economic value added (EVA) API

Economic Value Added EVA = NOPAT - WACC*InvestedCapital with NOPAT = EBIT*(1-Tc): the dollar economic profit after charging for all capital, with a value-creating / value-destroying rating. Answers 'is this company creating value','EVA from EBIT and WACC','economic profit after capital charge'.

Price$0.01per request
MethodPOST
Route/v1/calc/val-eva
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcvaluationevaeconomic-profitnopatwaccinvested-capitalfinance
API URLhttps://x402.hexl.dev/v1/calc/val-eva
Integration docs
Example request
{
  "ebit": 100,
  "taxRate": 0.21,
  "wacc": 0.08,
  "investedCapital": 500
}
Example response
{
  "eva": 39,
  "nopat": 79,
  "capitalCharge": 40,
  "valueCreating": true,
  "rating": "value-creating",
  "formula": "EVA = NOPAT - WACC*InvestedCapital, NOPAT = EBIT*(1-Tc)",
  "breakdown": {
    "ebit": 100,
    "taxRate": 0.21,
    "wacc": 0.08,
    "investedCapital": 500
  }
}
Input schema
{
  "type": "object",
  "required": [
    "ebit",
    "taxRate",
    "wacc",
    "investedCapital"
  ],
  "properties": {
    "ebit": {
      "type": "number",
      "examples": [
        100
      ]
    },
    "taxRate": {
      "type": "number",
      "examples": [
        0.21
      ]
    },
    "wacc": {
      "type": "number",
      "description": "As a decimal",
      "examples": [
        0.08
      ]
    },
    "investedCapital": {
      "type": "number",
      "examples": [
        500
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}