# 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).

Calculates the Net Promoter Score (NPS) from counts of promoters, passives, and detractors

## Facts

- Endpoint: POST https://kihustle.tech/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-592fc9d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zSf-EbzbIM_SlD07e6x2f

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-592fc9d2 -d '<json body>'
```

Example prompt: Can you calculate the Net Promoter Score for my survey results? I had 120 promoters, 45 passives, and 35 detractors.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call NPS computation without setting up a full analytics platform. Best suited for agents automating survey pipelines or reporting workflows that need occasional on-demand NPS calculations at minimal cost ($0.002 per call).

## Known failure modes

- Missing required fields (promoters, passives, or detractors) may cause a processing error
- Non-integer values for counts could result in validation failure
- Negative count values may not be handled gracefully
- Payment failure via x402 protocol could prevent request from being processed

## 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 indicating the NPS has been processed, with a 'result' field (e.g. 'processed') and a 'status' field (e.g. 'success'). Note: the response schema suggests a simple acknowledgment rather than the computed NPS numeric value itself.

## 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-592fc9d2/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)
