All calculators
Vital Capital Result
Result
Fill in the parameters and click Calculate
Axes
Define 1 or 2 axes to sweep across parameter ranges
Output fields
1 combinations Try with example Run grid
Configure axes and run to see results
Variables
Select parameters to solve for and their bounds
Targets
Define output goals to achieve
Configure variables and targets to optimize
cURL
bashcurl -X POST "https://mcp.datons.com/actuarial-calculators/calculator/vital_capital_result" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"rent_monthly":1500,"i_fin_year":0.035,"g_growth_year":0.02,"immediate":true,"temporal":false,"n_month":240,"date_valuation_start":"2026-04-28","dob":"1965-06-15","sex":"M"}'Python
pythonimport requests
response = requests.post(
"https://mcp.datons.com/actuarial-calculators/calculator/vital_capital_result",
headers={
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY",
},
json={
"rent_monthly": 1500,
"i_fin_year": 0.035,
"g_growth_year": 0.02,
"immediate": True,
"temporal": False,
"n_month": 240,
"date_valuation_start": "2026-04-28",
"dob": "1965-06-15",
"sex": "M"
},
)
result = response.json()
print(result)JavaScript
javascriptconst response = await fetch(
"https://mcp.datons.com/actuarial-calculators/calculator/vital_capital_result",
{
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY",
},
body: JSON.stringify({
"rent_monthly": 1500,
"i_fin_year": 0.035,
"g_growth_year": 0.02,
"immediate": true,
"temporal": false,
"n_month": 240,
"date_valuation_start": "2026-04-28",
"dob": "1965-06-15",
"sex": "M"
}),
}
);
const result = await response.json();
console.log(result);