# KiHustle De-Eszett Replacer

> KiHustle De-Eszett Replacer is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Replaces the German Eszett character (ß) with its equivalent 'ss' or alternative representation in a given text string

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/de-eszett-replacer
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-de-eszett-replacer-b12e56e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MxPZW1NSOp_z5qlxvo9qJ

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-de-eszett-replacer-b12e56e1 -d '<json body>'
```

Example prompt: Replace all Eszett characters (ß) in this German text with 'ss': 'Ich heisse Hans und wohne in der Straße.'

## When to prefer this

Choose this endpoint when you need a simple, dedicated microservice to replace ß characters in German text strings without building your own character substitution logic. It is especially useful for normalizing German text for ASCII-only systems, search indexing, or databases that don't support special characters, and is cheaper and more reliable than invoking a general-purpose LLM just for this task.

## Known failure modes

- Empty or missing 'text' field in request body returns an error
- Non-string input may cause processing failure
- Very long strings may time out or be rejected
- Network errors or service unavailability returning non-200 responses

## 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 processed text with all Eszett (ß) characters replaced, along with a success status field. Example: {"result": "processed text with ss substituted", "status": "success"}.

## 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-de-eszett-replacer-b12e56e1/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)
