Q

QR Code API

Generate beautiful QR codes instantly

Generate QR codes in PNG, SVG, or base64. Customize size, colors, error correction, and embed logos.

Developer Tools3 endpoints

Endpoints

GET
/generate

Generate QR code from text/URL

POST
/generate

Generate QR code with advanced options

Use Cases

Payment links
WiFi sharing
vCard contacts
App deep links
Event tickets

Quick Start

quickstart.js
const response = await fetch(
  "https://qr-code-by-helix-api.p.rapidapi.com/generate",
  {
    method: "GET",
    headers: {
      "X-RapidAPI-Key": "YOUR_API_KEY",
      "X-RapidAPI-Host": "qr-code-by-helix-api.p.rapidapi.com"
    }
  }
);
const data = await response.json();
console.log(data);

Related APIs