# KiHustle Z-Score Calculator

> KiHustle Z-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-14).

Computes the Z-score (standard score) given a value, mean, and standard deviation

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/z-score-calculator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-z-score-calculator-9252df36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L5C_GskzSVd-I7tatPADR

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-z-score-calculator-9252df36 -d '<json body>'
```

Example prompt: Can you calculate the z-score for a value of 85, where the mean is 70 and the standard deviation is 10?

## When to prefer this

Use this endpoint when you need a quick, programmatic z-score computation without setting up local math libraries — suitable for agents handling statistical normalization, outlier flagging, or data standardization tasks where a simple API call is more convenient than inline code.

## Known failure modes

- Missing required fields (value, mean, std_dev) — returns error or null result
- Standard deviation of zero causes division-by-zero error
- Non-numeric inputs for any of the three fields may cause processing failure
- Vague response schema may not clearly surface the numeric z-score result

## 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 containing the computed z-score result and a success status. The z-score indicates how many standard deviations the given value is from the mean (positive = above mean, negative = below mean).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mean": {
   "type": "number"
  },
  "value": {
   "type": "number"
  },
  "std_dev": {
   "type": "number"
  }
 }
}
```

## 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-z-score-calculator-9252df36/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)
