# KiHustle LD-JSON Minifier

> KiHustle LD-JSON Minifier 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).

Minifies a JSON-LD structured data object, removing unnecessary whitespace to produce a compact representation

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/ld-json-minifier
- 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-ld-json-minifier-a8e8b6f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dTJBu7-bn254Xr6a1Aifn

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-ld-json-minifier-a8e8b6f6 -d '<json body>'
```

Example prompt: Can you minify this JSON-LD structured data object for me so it's compact and ready to embed in a page's script tag? Here's the object: {"@context":"https://schema.org","@type":"Article","name":"How to Build Side Hustles with AI","author":{"@type":"Person","name":"KiHustle"}}

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.002 USDC) server-side minification of a JSON-LD structured data object — particularly useful in SEO automation pipelines where you want to reduce byte size of schema markup before injecting it into HTML. Prefer this over client-side JSON.stringify() alternatives when operating in an agent workflow that already uses x402 micropayments.

## Known failure modes

- Invalid or malformed JSON-LD input returns an error response
- Missing 'json_ld' field in request body causes processing failure
- Extremely large JSON-LD objects may time out
- Non-object values passed as json_ld (e.g. arrays or strings) may not be handled correctly

## 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 response with a 'result' field containing the minified (whitespace-stripped) JSON-LD string and a 'status' field confirming success.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "json_ld": {
   "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-ld-json-minifier-a8e8b6f6/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)
