Valuation tools for investors, Excel users and financial models
https://vgd7fxh1sj.execute-api.eu-north-1.amazonaws.com/live
Calculates P/E ratio, EPS growth and PEG valuation.
curl "https://vgd7fxh1sj.execute-api.eu-north-1.amazonaws.com/live/priceToEarnings?ticker=SPOT&eps=12.90&futureEps=15.74&stockPrice=497" \
-H "Authorization: Bearer YOUR_API_KEY"
Projects future EPS and future stock price using growth assumptions.
curl "https://vgd7fxh1sj.execute-api.eu-north-1.amazonaws.com/live/futurePrice?ticker=META&eps=32&growth=15&years=5&futurePE=20" \
-H "Authorization: Bearer YOUR_API_KEY"
Calculates the SaaS Rule of 40 score using revenue growth and profit margin.
curl "https://vgd7fxh1sj.execute-api.eu-north-1.amazonaws.com/live/ruleOf40?ticker=CRWD&revenueGrowth=28&profitMargin=15" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"ticker": "CRWD",
"revenueGrowth": 28,
"profitMargin": 15,
"ruleOf40Score": 43,
"assessment": "Strong"
}
Calculates a valuation range using low, base and high P/E assumptions.
curl "https://vgd7fxh1sj.execute-api.eu-north-1.amazonaws.com/live/fairValueRange?ticker=META&futureEps=45&lowPE=18&basePE=24&highPE=30" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"ticker": "META",
"futureEps": 45,
"lowPE": 18,
"basePE": 24,
"highPE": 30,
"bearCasePrice": 810,
"baseCasePrice": 1080,
"bullCasePrice": 1350,
"fairValueRange": "810 - 1350"
}
Calculates the annual growth rate required for a stock to increase 10x over a chosen investment horizon.
curl "https://vgd7fxh1sj.execute-api.eu-north-1.amazonaws.com/live/tenBagger?ticker=NVDA&years=10" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"ticker": "NVDA",
"years": 10,
"targetMultiple": 10,
"requiredAnnualReturnPercent": 25.89,
"assessment": "Very high growth required"
}