# KiHustle JSON Percentile Calculator

> KiHustle JSON Percentile 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 percentile values for a given array of numbers at specified percentile thresholds

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/json-percentile-calculator
- 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-json-percentile-calculator-5f186861
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Dv4mAc7vRT-R5WBAJawf

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-json-percentile-calculator-5f186861 -d '<json body>'
```

Example prompt: Calculate the 25th, 50th, 75th, and 95th percentiles for this dataset: [12, 45, 7, 89, 23, 56, 34, 78, 90, 11, 67, 43].

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call percentile computation without setting up a local statistics library or data warehouse query. Ideal for quick on-demand percentile calculations within agent workflows where the dataset is small-to-medium and results are needed in real time.

## Known failure modes

- Empty or missing values array returns an error
- Invalid percentile values outside 0-100 range may cause failure
- Non-numeric entries in the values array will likely cause processing errors
- Very large arrays may hit payload or processing limits
- Malformed JSON input returns a 400-level error

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

A JSON response containing the computed percentile values for the specified thresholds against the input array, returned with a success status indicator.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "values": {
   "type": "array",
   "items": {
    "type": "number"
   }
  },
  "percentiles": {
   "type": "array",
   "items": {
    "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-json-percentile-calculator-5f186861/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)
