# KiHustle JSON Seasonality Detector

> KiHustle JSON Seasonality Detector 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).

Detects seasonality patterns in a numeric time series given a list of values and a period length

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/json-seasonality-detector
- 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-seasonality-detector-b142565b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hsCJKkkoujlczQEW_i8Cu

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-seasonality-detector-b142565b -d '<json body>'
```

Example prompt: Can you check my monthly sales numbers for seasonal patterns? Here are 24 values: [120, 135, 90, 80, 150, 170, 110, 95, 160, 180, 115, 100, 125, 140, 88, 82, 155, 175, 112, 98, 165, 185, 118, 105] — use a period of 12.

## When to prefer this

Choose this endpoint when you need a lightweight, low-cost ($0.002 per call) API call to check whether a numeric sequence exhibits a repeating seasonal cycle given a known period. It is best suited for quick programmatic checks on arrays of numeric data without requiring a full-featured statistical platform or large data pipeline.

## Known failure modes

- Missing or empty 'values' array returns an error or empty result
- Invalid 'period' integer (e.g. zero, negative, or larger than the array length) may cause failed processing
- Non-numeric values in the array may cause parsing errors
- Very short time series (fewer elements than two full periods) may yield unreliable or error responses
- Payment failure via x402 protocol results in 402 response before processing begins

## 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 processing outcome and a 'status' field confirming success or failure. The response is minimal and structured, confirming whether seasonality was detected or processed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "period": {
   "type": "integer"
  },
  "values": {
   "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-seasonality-detector-b142565b/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)
