Header

How to Generate a QR Code or Barcode

Supported Barcode Formats

Squizee supports various barcode formats in addition to QR codes:

API Usage Guide

Generate QR codes and barcodes programmatically using the Squizee QR Code API:

Example API Call for QR Code:

https://qr.squizee.in/?value=12323349&footer=no&height=15&scale=10&padding=3&background=055160&barcolor=ffffff&bcid=qrcode

Example API Call for Barcode (Barcode 128):

https://qr.squizee.in/?value=12323349&footer=no&height=15&scale=10&padding=3&background=055160&barcolor=ffffff&bcid=code128

Example with Base64 Response:

https://qr.squizee.in/?value=12323349&fileType=base64
{
            "success": true,
            "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAeAAAAHgCAYAAAB91L6VAAAAHnRFWHRTb2Z0d2FyZQBid2lwLWpzLm1ldGFmbG9vci5jb21Tnbi0AAAfR0lEQVR4nO3VQY4DSQ5D0d74"
            }

Example with Base64Raw Response:

https://qr.squizee.in/?value=12323349&fileType=base64raw
iVBORw0KGgoAAAANSUhEUgAAAeAAAAHgCAYAAAB91L6VAAAAHnRFWHRTb2Z0d2FyZQBid2lwLWpzLm1ldGFmbG9vci5jb21Tnbi0AAAfR0lEQVR4nO3VQY4DSQ5D0d74

Example with JSON Response:

https://qr.squizee.in/?value=12323349&fileType=json
{
            "success": true,
            "base64": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAHgCAYAAAB91L6VAAAAHnRFWHRTb2Z0d2FyZQBid2lwLWpzLm1ldGFmbG9vci5jb21Tnbi0AAAfR0lEQVR4nO3VQY4DSQ5D0d74"
            }

Notes: