# Sindri QR Code Generator

> Sindri QR Code Generator is a paid API for AI agents from x402.outpimp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates a QR code image for any text or URL and returns it as a base64-encoded PNG data URL, computed entirely locally.

## Facts

- Endpoint: POST https://x402.outpimp.com/qrCodeGenerate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sindri-qr-code-generator-bc78c1ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jovQhuAVM9E8Mi4hPLYNi

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 sindri-qr-code-generator-bc78c1ed -d '<json body>'
```

Example prompt: Can you generate a QR code for my website https://example.com and give me the image as a base64 PNG I can embed in my page?

## When to prefer this

Choose this endpoint when you need a fast, privacy-respecting QR code generated locally without sending data to a third-party QR service. Ideal for embedding in automated pipelines, generating QR codes for sensitive data (passwords, private URLs), or when you need a raw base64 PNG without external redirects or tracking.

## Known failure modes

- Text exceeds 500-character limit — request rejected with validation error
- Empty or missing text field — returns error indicating required parameter
- Text contains characters that cause QR encoding overflow — may return error
- Network or payment (x402) failure before the endpoint is reached

## How this service works

Generates a QR code for the given text, returned as a base64-encoded PNG data URL, computed entirely locally with no external service call.

## Output

A base64-encoded PNG data URL representing the QR code image, suitable for direct embedding in HTML img tags or saving as a .png file. The image encodes the submitted text or URL as a scannable QR code, computed locally with no external service dependency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text or URL to encode. Max 500 characters."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sindri-qr-code-generator-bc78c1ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.outpimp.com](https://www.zero.xyz/host/x402.outpimp.com/llms.txt)
