Catalog/hr-fte

Calculators

FTE (full-time-equivalent) calculator API

Compute FTE = total weekly hours worked / full-time weekly hours (default 40), the standard way to convert mixed part/full-time hours into headcount equivalents. Deterministic workforce math. Answers 'how many FTEs is 1240 weekly hours','convert part-time hours to FTE','headcount equivalent of my team'.

Price$0.01per request
MethodPOST
Route/v1/calc/hr-fte
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
hrfteheadcountworkforcestaffingcalccapacitymetrics
API URLhttps://x402.hexl.dev/v1/calc/hr-fte
Integration docs
Example request
{
  "totalWeeklyHours": 1240
}
Example response
{
  "totalWeeklyHours": 1240,
  "fullTimeHours": 40,
  "fte": 31,
  "headcountEquivalent": 31
}
Input schema
{
  "type": "object",
  "required": [
    "totalWeeklyHours"
  ],
  "properties": {
    "totalWeeklyHours": {
      "type": "number",
      "description": "Sum of weekly hours across all workers",
      "examples": [
        1240
      ]
    },
    "fullTimeHours": {
      "type": "number",
      "default": 40,
      "examples": [
        40
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}