# KiHustle QR Decoder

> KiHustle QR 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 base64-encoded image containing a QR code and returns the embedded data as text

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/qr-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-qr-decoder-259407e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_APRWEaJwvMF3zcupyzlN2

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-qr-decoder-259407e4 -d '<json body>'
```

Example prompt: I have a QR code image — can you decode it and tell me what URL or text it contains? Here's the image as a base64 string.

## When to prefer this

Use this endpoint when you need a simple, pay-per-call QR code decoding API without managing your own image processing infrastructure. At $0.002 per call it is cost-effective for low-to-moderate volume. Prefer it for automation pipelines that already have images as base64 strings. If you need bulk batch decoding of thousands of QR codes per second, a dedicated self-hosted library may be more economical.

## Known failure modes

- Image is not a valid base64 string — returns error or malformed response
- Image does not contain a detectable QR code — may return empty result or error
- QR code is too blurry, damaged, or low-resolution to decode — decoding fails
- Unsupported image format encoded in base64 — processing fails
- Missing or empty image_base64 field — validation 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 with a 'result' field containing the decoded QR code content (typically a URL or text string) and a 'status' field indicating success or failure of the decoding operation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "image_base64": {
   "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-qr-decoder-259407e4/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)
