QR Developer Tools
For now, developer integration stays browser-only. Your application can generate static QR codes locally without sending user data to a QR API.
JavaScript example
Install qr-code-styling in your frontend project and generate the QR in the browser.
import QRCodeStyling from "qr-code-styling";
const qr = new QRCodeStyling({
width: 300,
height: 300,
data: "https://example.com",
dotsOptions: { type: "rounded" }
});
qr.append(document.getElementById("qr"));Why no hosted API yet?
A public API needs authentication, quotas, abuse prevention and server infrastructure. We are keeping the current phase backend-free, so this page focuses on client-side integration.