# KiHustle JSON Type Coercer

> KiHustle JSON Type Coercer 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).

Coerces and normalizes JSON field types within an arbitrary object payload, returning a processed result with corrected types.

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/json-type-coercer
- 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-json-type-coercer-15274490
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hUZfaxqWoNvwkYjpfF-gm

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-type-coercer-15274490 -d '<json body>'
```

Example prompt: Take this JSON object and coerce all its fields to their correct types — for example, convert any stringified numbers like '42' to actual integers and 'true'/'false' strings to booleans, then return the cleaned result.

## When to prefer this

Choose this endpoint when you have a loosely typed or heterogeneous JSON object whose field types need to be normalized to their correct native types before downstream processing, storage, or validation. It is especially useful in automation pipelines where data arrives from external APIs or user input with stringified numbers, booleans, or nulls. Prefer this over manual parsing when the payload structure is dynamic or unknown ahead of time.

## Known failure modes

- Invalid or malformed JSON payload results in an error response
- Empty payload object may return a no-op result with no transformation applied
- Ambiguous fields (e.g. a string '1' that could be boolean or integer) may be coerced incorrectly
- Network timeout or service unavailability returns a non-200 HTTP status
- Unexpected payload structure may cause partial coercion with some fields unchanged

## 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 type-coerced version of the input payload, and a 'status' field indicating 'success'. Field values that were loosely typed (e.g. stringified numbers, booleans) are converted to their native JSON equivalents.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "payload": {
   "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-type-coercer-15274490/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)
