Calculators
PEG ratio API
PEG ratio = (P/E) / (earnings growth % per year), normalizing the P/E by growth, with a valuation bucket (PEG<1 potentially undervalued, <=1.5 fairly valued, else potentially overvalued). Answers 'is this P/E justified by growth','PEG ratio of 20x at 25% growth','growth-adjusted valuation'.
Price$0.01per request
MethodPOST
Route/v1/calc/val-peg-ratio
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcvaluationpegpe-ratiogrowthmultipleequityfinance
API URL
Integration docshttps://x402.hexl.dev/v1/calc/val-peg-ratioExample request
{
"peMultiple": 20,
"growthRatePercent": 25
}Example response
{
"peg": 0.8,
"rating": "potentially-undervalued",
"formula": "PEG = (P/E) / (earnings growth % per year)",
"breakdown": {
"peMultiple": 20,
"growthRatePercent": 25
}
}Input schema
{
"type": "object",
"required": [
"peMultiple",
"growthRatePercent"
],
"properties": {
"peMultiple": {
"type": "number",
"examples": [
20
]
},
"growthRatePercent": {
"type": "number",
"description": "Annual earnings growth in percent (e.g. 25 = 25%)",
"examples": [
25
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}