# ForgeKit QR Decode

> ForgeKit QR Decode is a paid API for AI agents from useforgekit.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Decodes a QR code image (supplied as a URL or base64) and returns the embedded payload string

## Facts

- Endpoint: POST https://useforgekit.dev/api/v1/qr/decode
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgekit-qr-decode-27b966fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ILBdcAVca2a9wYE0tUQZh

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 forgekit-qr-decode-27b966fd -d '<json body>'
```

Example prompt: Can you decode this QR code image for me and tell me what it contains? Here's the image URL: https://example.com/qr-code.png

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call QR decode without managing your own image-processing infrastructure. It accepts both remote image URLs and base64-encoded images, making it flexible for pipeline use. Ideal for agents that encounter QR codes in documents, emails, or web pages and need to resolve their contents programmatically.

## Known failure modes

- Image URL is unreachable or returns a non-image response
- No QR code detected in the image
- Image is too blurry or low-resolution for decoding
- Invalid base64 string provided
- QR code is partially obscured or damaged
- Unsupported image format

## How this service works

ForgeKit QR decode (image → payload)

## Output

Returns the decoded payload string embedded in the QR code — typically a URL, plain text, contact info, or other structured data — extracted from the provided image.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "imageUrl": {
   "type": "string"
  },
  "imageBase64": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgekit-qr-decode-27b966fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from useforgekit.dev](https://www.zero.xyz/host/useforgekit.dev/llms.txt)
