Catalog/val-pe-valuation

Calculators

P/E implied price & earnings yield API

Price/earnings valuation price = EPS * P/E with earnings yield = 1/(P/E), plus an optional implied equity value from shares outstanding. Deterministic and auditable. Answers 'implied price at a 15x P/E','earnings yield of a P/E','target price from EPS and a multiple'.

Price$0.01per request
MethodPOST
Route/v1/calc/val-pe-valuation
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcvaluationpe-ratioepsearnings-yieldmultipleequityfinance
API URLhttps://x402.hexl.dev/v1/calc/val-pe-valuation
Integration docs
Example request
{
  "eps": 5,
  "peMultiple": 15,
  "shares": 10
}
Example response
{
  "impliedPrice": 75,
  "earningsYield": 0.066667,
  "earningsYieldPercent": 6.6667,
  "formula": "price = EPS * P/E ; earningsYield = 1 / (P/E)",
  "breakdown": {
    "eps": 5,
    "peMultiple": 15
  },
  "impliedEquityValue": 750
}
Input schema
{
  "type": "object",
  "required": [
    "eps",
    "peMultiple"
  ],
  "properties": {
    "eps": {
      "type": "number",
      "description": "Earnings per share",
      "examples": [
        5
      ]
    },
    "peMultiple": {
      "type": "number",
      "description": "Price/earnings multiple",
      "examples": [
        15
      ]
    },
    "shares": {
      "type": "number",
      "examples": [
        10
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}