# KiHustle Base58 Decoder

> KiHustle Base58 Decoder 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).

Decodes a Base58-encoded string and returns the decoded result

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/base58-decoder
- 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-base58-decoder-fff4f76c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bfyos5X-Z0lgr56QY5YWx

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-base58-decoder-fff4f76c -d '<json body>'
```

Example prompt: Can you decode this Base58 string for me: '3vQB7B6MrGQZaxCuFg4oh'?

## When to prefer this

Use this endpoint when you have a Base58-encoded string (common in blockchain addresses, IPFS CIDs, and cryptographic keys) and need to recover the original decoded value. Prefer this over a local implementation when calling from an agent that lacks native Base58 decoding libraries or when you need a simple, paid-per-call utility without managing dependencies.

## Known failure modes

- Invalid Base58 characters in input — returns error or unexpected result
- Empty input string — may return empty result or validation error
- Input contains Base58Check checksum mismatch — result may not be validated
- Malformed JSON request body — returns HTTP 400 or parse error

## 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 decoded result string and a success status, e.g. {"result": "decoded-value", "status": "success"}

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "encoded": {
   "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-base58-decoder-fff4f76c/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)
