# KiHustle JSON Difference API

> KiHustle JSON Difference API 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).

Computes the structural difference between two JSON objects, returning added, removed, and changed keys/values

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/json-difference
- 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-difference-api-bb38a384
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3yE5ZyM0uDt0ElnVpYk1h

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-difference-api-bb38a384 -d '<json body>'
```

Example prompt: Can you compare these two JSON objects and tell me exactly what changed — what was added, removed, or modified between them?

## When to prefer this

Choose this endpoint when you need a quick, lightweight, pay-per-call JSON diff without setting up a library or running code locally. Ideal for agents that need to compare small-to-medium JSON objects on the fly at $0.002 per call without managing infrastructure. Less suitable for very large documents or complex recursive diffs.

## Known failure modes

- Malformed or non-object JSON input returns an error
- Missing json_a or json_b fields results in a validation error
- Very large or deeply nested JSON objects may time out or produce unexpected output
- Payment failure via x402 protocol blocks the request
- Non-object JSON types (arrays, primitives) may not be supported as top-level inputs

## 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 containing a 'result' field indicating the diff outcome and a 'status' field ('success'). The diff result encodes structural differences between json_a and json_b, including added, removed, and modified keys/values. Exact shape of the difference representation depends on service implementation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "json_a": {
   "type": "object"
  },
  "json_b": {
   "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-difference-api-bb38a384/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)
