Free QR Code Generator

Custom colors, sizes from 100 to 1000px, PNG or SVG. No signup, no watermark. API included.

Format:
Your QR code will appear here

API Endpoint

Generate QR codes programmatically. 20 free requests per day, no auth required.

// POST https://nopii.xyz/v1/qr/generate
const res = await fetch("https://nopii.xyz/v1/qr/generate", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    text: "https://nopii.xyz",
    size: 300,
    format: "png",
    color: "#000000",
    bg_color: "#ffffff"
  })
});

const { format, size, data } = await res.json();
// data = "data:image/png;base64,..." (PNG) or SVG string

More Free Tools

Base64 Encoder

Encode and decode Base64 strings and files

Hash Generator

MD5, SHA-1, SHA-256, SHA-512 hashes

JSON Formatter

Format, validate, and minify JSON

Password Generator

Secure random passwords and passphrases

Color Palette

Generate and convert color palettes

Regex Tester

Test and debug regular expressions