# KiHustle JSON Patch Applier

> KiHustle JSON Patch Applier 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).

Applies a JSON Patch (RFC 6902) array of operations to a JSON document and returns the patched result

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/json-patch-applier
- 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-patch-applier-fe66a95b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xnpFC9cCZbu7ul_xnVwLv

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-patch-applier-fe66a95b -d '<json body>'
```

Example prompt: Apply this JSON Patch to my document — the base document is {"name":"Alice","age":30} and the patch is [{"op":"replace","path":"/name","value":"Bob"},{"op":"add","path":"/email","value":"bob@example.com"}].

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call JSON Patch (RFC 6902) applier without spinning up your own server-side logic. It is ideal for agents that need to apply structured mutations to JSON documents on the fly in an automation pipeline, especially when the patch is already expressed as a standard RFC 6902 array.

## Known failure modes

- Invalid patch operation type returns an error
- Path not found in document causes patch failure
- Malformed JSON in document or patch array returns parse error
- Test operation failure aborts the patch sequence
- Empty patch array returns the document unchanged
- Type mismatch in replacement value may return an error

## 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 the patched JSON document after all patch operations have been applied, along with a result status field indicating success. The response includes the fully modified document object reflecting all add, remove, replace, move, copy, or test operations from the patch array.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "patch": {
   "type": "array",
   "items": {}
  },
  "document": {
   "type": "object"
  }
 }
}
```

## 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-patch-applier-fe66a95b/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)
