# KiHustle ROT13 Transformer

> KiHustle ROT13 Transformer 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).

Applies ROT13 Caesar cipher encoding/decoding to a given text string

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/rot13-transformer
- 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-rot13-transformer-77505200
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_53xNlFhvObII-2zj4dzEV

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-rot13-transformer-77505200 -d '<json body>'
```

Example prompt: Can you ROT13-encode this text for me: 'Hello, this is a secret message I want to lightly obfuscate'?

## When to prefer this

Choose this endpoint when you need a simple, stateless ROT13 transformation of a text string via a paid API call. Useful when you want a hosted, reliable ROT13 service without implementing it yourself, or when integrating into an x402 payment-gated workflow. ROT13 is self-inverse, so the same endpoint handles both encoding and decoding.

## Known failure modes

- Missing or empty 'text' field returns an error or empty result
- Non-string input type may cause a processing error
- Very large text strings may be rejected or time out
- Network or payment authorization failure returns a 402 status

## 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 containing the ROT13-transformed version of the input text in the 'result' field, along with a 'status' field confirming success. The output string is the same length as the input, with alphabetic characters rotated by 13 positions and non-alphabetic characters left unchanged.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## 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-rot13-transformer-77505200/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)
