Catalog/hr-revenue-per-employee

Calculators

Revenue per employee calculator API

Compute revenue per employee = total revenue / headcount, the standard workforce-productivity metric. Deterministic ratio. Answers 'what's our revenue per employee','productivity per head','revenue per FTE at 125 employees'.

Price$0.01per request
MethodPOST
Route/v1/calc/hr-revenue-per-employee
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
hrproductivityrevenue-per-employeemetricsworkforcecalcefficiencyratio
API URLhttps://x402.hexl.dev/v1/calc/hr-revenue-per-employee
Integration docs
Example request
{
  "totalRevenue": 25000000,
  "headcount": 125
}
Example response
{
  "totalRevenue": 25000000,
  "headcount": 125,
  "revenuePerEmployee": 200000
}
Input schema
{
  "type": "object",
  "required": [
    "totalRevenue",
    "headcount"
  ],
  "properties": {
    "totalRevenue": {
      "type": "number",
      "description": "Total revenue in dollars",
      "examples": [
        25000000
      ]
    },
    "headcount": {
      "type": "number",
      "description": "Total headcount",
      "examples": [
        125
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}