ForHosting KIT · Developer Utilities

Calculate Employee Net Promoter Score

This employee Net Promoter Score calculator converts workplace recommendation survey responses into a transparent eNPS result.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter employee ratings on the standard zero-to-ten scale to classify each response as a promoter, passive, or detractor. The result includes category counts, percentages, the final eNPS, and classifications in the original order. HR teams, people analysts, and organizational leaders can use it to check survey arithmetic, prepare recurring engagement reports, or add a consistent calculation to an internal analytics workflow without maintaining spreadsheet formulas.

Prepare a valid employee response set

Provide the answers to an employee likelihood-to-recommend question as a list of integer scores from zero through ten. Use one list for the workforce population and reporting period you intend to describe. A quarterly company-wide result, for example, should contain only eligible responses from that quarter, while a department result should contain only responses assigned to that department under your reporting rules. The calculator rejects an empty list because no eNPS exists without responses. It also rejects text, decimals, negative values, and values above ten so that malformed exports cannot silently affect the metric. Review the source survey before calculation to remove test submissions, apply your stated date boundaries, and handle duplicates according to your survey policy. The capability processes only the supplied scores. It does not identify employees, infer organizational membership, select a representative sample, apply weights, or decide whether a small group is safe to report. Those governance decisions remain with the organization. Keeping data selection separate from arithmetic makes the output reproducible and lets reviewers reconcile it with an approved, privacy-conscious source extract.

Understand employee promoter classifications

Employee Net Promoter Score uses three conventional bands. Ratings of nine or ten are promoters, representing employees with the strongest stated likelihood of recommending the organization as a workplace. Ratings of seven or eight are passives. They remain part of the response total and influence the denominator, but their percentage is not directly added to or subtracted from the score. Ratings from zero through six are detractors. The output returns a category beside every score in its original order, as well as category counts and percentages, making the result easier to audit without requiring names or other employee identifiers. Percentages are rounded to two decimal places for stable reporting. These categories summarize one survey response; they do not reveal motivation, performance, loyalty, or an employee's future behavior. Treat them as structured signals rather than labels to attach to individuals. Qualitative comments, carefully designed follow-up research, and aggregate segment analysis can provide context about workplace conditions. Access controls and minimum reporting thresholds should still be applied outside this calculator whenever small populations could make respondents recognizable.

Calculate, interpret, and report eNPS

The eNPS formula subtracts the percentage of detractors from the percentage of promoters. The result ranges from negative one hundred, when every response is a detractor, to positive one hundred, when every response is a promoter. Passives stay in the total population, so they affect both promoter and detractor percentages even though their own percentage is absent from the subtraction. The calculator returns the final eNPS to two decimal places alongside totals, intermediate percentages, and record-level classifications. This allows an analyst to verify the calculation instead of presenting an unexplained headline. For comparisons across teams or periods, keep question wording, eligibility rules, collection channel, and survey timing consistent. Changes in a small response set can reflect sampling variation, and this capability does not estimate confidence intervals, statistical significance, response bias, or causation. Use counts for transparent internal review, percentages for composition, and eNPS as a compact trend indicator alongside other engagement evidence. Protect confidentiality when publishing breakdowns, and avoid using individual classifications for employment decisions. Browser use is free; each automated API item uses the published base price of $0.002.

Summarize an engagement survey

Turn workplace recommendation ratings into eNPS, category totals, percentages, and auditable classifications.

Build a people analytics trend

Apply the same deterministic calculation to approved response sets across consistent reporting periods.

Audit an HR dashboard

Compare the returned counts and classifications with an existing spreadsheet or survey platform result.

Which employee scores are promoters, passives, and detractors?

Scores of 9–10 are promoters, 7–8 are passives, and 0–6 are detractors.

How is eNPS calculated?

Subtract the percentage of detractors from the percentage of promoters. Passives remain in the total response count.

What happens when the response list is empty?

The request returns an invalid input error because eNPS cannot be calculated without responses.

Can responses include decimals or values outside 0–10?

No. Every response must be an integer on the inclusive zero-to-ten scale.

Does this tool protect employee anonymity?

It accepts scores without identities, but your organization must enforce access controls, aggregation thresholds, and privacy policies around source data and reporting.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/biz/employee-enps-calculate

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/biz/employee-enps-calculate \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"responses":[10,9,8,7,6,2]}'
{
  "responses": [
    10,
    9,
    8,
    7,
    6,
    2
  ]
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "biz.employee_enps_calculate",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

max_responses100000
HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →