# JSON Percentile Calculator

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

Computes percentile values for a given array of numbers at specified percentile thresholds

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/json-percentile-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/json-percentile-calculator-6ce2eb70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nnAz5QCmO1Tl0ZVNK9qNt

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 json-percentile-calculator-6ce2eb70 -d '<json body>'
```

Example prompt: Calculate the 25th, 50th, 75th, and 99th percentiles for this list of numbers: [120, 340, 87, 560, 230, 410, 95, 670, 150, 305].

## When to prefer this

Use this endpoint when you need a quick, low-cost API call to compute statistical percentiles on a numeric dataset without spinning up a full analytics environment. It is ideal for lightweight agent workflows needing distribution summaries (e.g. p50/p95/p99 for monitoring) where a self-hosted stats library is not available.

## Known failure modes

- Empty or missing values array returns an error
- Percentile values outside 0–100 range may cause validation failure
- Non-numeric values in the array will likely cause processing errors
- Missing percentiles array may result in a default or error response
- Very large arrays may increase latency slightly

## 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 containing the computed percentile values for the requested thresholds applied to the input array, along with a 'status' field confirming successful processing.

## 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/json-percentile-calculator-6ce2eb70/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)
