# KiHustle JSON Array Chunker

> KiHustle JSON Array Chunker 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).

Splits a JSON array into fixed-size chunks and returns the chunked result

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/json-array-chunker
- 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-array-chunker-a398cb9f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gZkswdTQbCpQfQxw4ZnK-

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-array-chunker-a398cb9f -d '<json body>'
```

Example prompt: Can you split this list of 150 product IDs into chunks of 25 so I can process them in batches?

## When to prefer this

Use this endpoint when you need a simple, hosted utility to split a JSON array into fixed-size chunks without writing custom code — especially useful in automated pipelines where chunking logic needs to be a discrete, callable step. Prefer this over custom code when running in an environment where local computation is restricted or when cost ($0.002 per call) is acceptable for convenience.

## Known failure modes

- Missing or non-array 'items' field returns an error
- Non-integer or missing 'chunk_size' returns an error
- Empty array may return empty result or single empty chunk
- Very large arrays may time out or be rejected
- chunk_size of zero or negative may cause undefined behavior

## 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 original array split into sub-arrays of the specified chunk size, along with a success status field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "items": {
   "type": "array",
   "items": {}
  },
  "chunk_size": {
   "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-array-chunker-a398cb9f/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)
