# KiHustle Net Promoter Score Calculator

> KiHustle Net Promoter Score Calculator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Computes a Net Promoter Score (NPS) from counts of promoters, passives, and detractors

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/net-promoter-score
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-net-promoter-score-calculator-f7d858a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MaEkaR8NwCVWgTVUdhJ9R

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability kihustle-net-promoter-score-calculator-f7d858a1 -d '<json body>'
```

Example prompt: Calculate the Net Promoter Score for my survey: we had 120 promoters, 45 passives, and 35 detractors.

## When to prefer this

Use this endpoint when you need a quick, automated NPS computation from raw survey count data (promoters, passives, detractors) without doing the arithmetic yourself. Prefer this over manual calculation when integrating NPS scoring into automated survey pipelines or agent workflows at low cost ($0.002 per call).

## Known failure modes

- Missing required integer fields (promoters, passives, detractors) results in a failed or malformed request
- Non-integer values for counts may cause processing errors
- Negative count values may produce unexpected or invalid NPS results
- Network or payment authentication failures (x402 protocol) preventing request completion

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field indicating the processed NPS and a 'status' field confirming success. The actual numeric NPS score should be derivable from the computation (promoters% minus detractors%).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "passives": {
   "type": "integer"
  },
  "promoters": {
   "type": "integer"
  },
  "detractors": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-net-promoter-score-calculator-f7d858a1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
