# KiHustle JSON Moving Average Calculator

> KiHustle JSON Moving Average 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 a moving average over a provided JSON dataset and returns the smoothed result

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/json-moving-average
- 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-moving-average-calculator-5ca3fc40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NXdymBCtxSqYu-LbihYbD

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-moving-average-calculator-5ca3fc40 -d '<json body>'
```

Example prompt: Can you calculate a moving average over this JSON dataset of weekly sales figures using a window of 4 periods: [120, 135, 98, 142, 160, 155, 170, 145]?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call moving average computation on JSON-formatted numeric data without setting up your own statistical processing pipeline; suitable for smoothing time series, price data, or any sequential numeric dataset

## Known failure modes

- Invalid or malformed JSON input returns error
- Missing required data array or window size parameter causes failure
- Non-numeric values in the dataset may cause computation errors
- Empty dataset returns no result
- Window size larger than dataset length may produce partial or empty output

## 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 moving average values and a 'status' field indicating success or failure of the computation

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "values": {
   "type": "array",
   "items": {
    "type": "number"
   }
  },
  "window": {
   "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-json-moving-average-calculator-5ca3fc40/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)
