QR Code Generator
Generate QR codes from text or URLs.
TL;DR: 0.25 credits per QR code. SVG and PNG output with custom styling.
Endpoint: POST /api/v1/qr
Overview
Generate QR codes for menus, WiFi, events, payments, and marketing campaigns via API.
Print guidelines
Use error correction level H for print. Minimum 2×2cm for handheld scanning.
Code examples
Node.js
await fetch("https://useforgekit.dev/api/v1/qr", { method: "POST", headers: { Authorization: "Bearer fk_live_..." }, body: JSON.stringify({ data: "https://example.com", size: 512 }) });Python
requests.post("https://useforgekit.dev/api/v1/qr", headers={"Authorization": "Bearer fk_live_..."}, json={"data": "https://example.com"})cURL
curl -X POST https://useforgekit.dev/api/v1/qr -H "Authorization: Bearer fk_live_..." -d '{"data":"https://example.com"}'Pricing
250 free credits/month. Paid plans from $19/mo. View pricing.
FAQ
Output formats?
PNG, SVG, and base64 JSON.
Custom colors?
Yes — foreground and background hex values.