# KiHustle JSON Key Rename

> KiHustle JSON Key Rename 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).

Renames keys in a JSON object according to a provided field-name mapping

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/json-key-rename
- 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-key-rename-56e824d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bE3QHaDE3ZjQIHZuw9Lxi

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-key-rename-56e824d7 -d '<json body>'
```

Example prompt: Rename the keys in this JSON object — change 'first_name' to 'firstName', 'last_name' to 'lastName', and 'phone_number' to 'phone' — using the mapping I'll pass alongside the data object.

## When to prefer this

Use this endpoint when you need a simple, stateless, pay-per-call JSON key renaming operation without spinning up your own transformation logic. It is especially useful in automation pipelines where field-name normalization is a recurring step, or when integrating disparate APIs that use different naming conventions for the same data.

## Known failure modes

- Missing or malformed 'data' object returns an error
- Missing or malformed 'mapping' object returns an error
- Keys referenced in mapping that don't exist in data are silently skipped or cause an error
- Deeply nested keys may not be remapped if only top-level renaming is supported
- Payment failure (x402) prevents the call from being processed

## 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

A JSON object with the same values as the input but with keys renamed according to the provided mapping. The response includes a 'result' field with the transformed object and a 'status' field confirming success.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "mapping": {
   "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-key-rename-56e824d7/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)
