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

Detects seasonality patterns in a time-series array of numeric values given a specified period length

## Facts

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

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-4f571143 -d '<json body>'
```

Example prompt: Can you check if there's a seasonal pattern in this monthly sales data — here are 24 values: [120, 135, 160, 180, 175, 150, 130, 125, 140, 165, 185, 200, 125, 138, 162, 183, 178, 153, 133, 127, 143, 168, 188, 205] — 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 quickly determine if a numeric time series exhibits seasonality for a given period. It is best suited for simple periodic-pattern checks on moderate-length arrays where you already know the candidate period. Prefer more advanced statistical libraries or endpoints if you need decomposition details, multiple period testing, or confidence intervals.

## Known failure modes

- Missing or empty 'values' array causes a processing error
- Non-integer 'period' value may be rejected or cause unexpected results
- Period longer than the values array length may yield unreliable results
- Malformed JSON input body returns an error response
- All-identical values (zero variance) may produce degenerate seasonality 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 indicating the seasonality detection outcome and a 'status' field confirming success. The exact seasonality metrics (e.g., detected period strength, seasonal flags) are inferred from the processed values and period parameter.

## 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-4f571143/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)
