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

Calculates percentile rankings from a dataset submitted as JSON via POST request

## Facts

- Endpoint: POST https://kihustle.tech/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-72d53695
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FzV6qPRMElocx-hZWfZLx

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-72d53695 -d '<json body>'
```

Example prompt: Calculate the percentile rank for a score of 78 within this dataset: [55, 60, 62, 70, 75, 78, 82, 88, 91, 95] — I need to know what percentage of values fall below 78.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call percentile computation without setting up your own statistics library. Best for one-off or low-volume percentile calculations on numeric JSON datasets where a simple API call is preferable to writing custom statistical logic.

## Known failure modes

- Malformed JSON body returns error response
- Missing required dataset or target value causes processing failure
- Non-numeric values in dataset may cause computation errors
- Empty dataset input returns failure status
- Network timeout on large datasets

## 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 computed percentile value and 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/kihustle-json-percentile-calculator-72d53695/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)
