QR Code Generator

QR Code Generator

Tools & Utilities
4.786 reviews
120ms

A versatile API that generates QR codes for any text, URL, or contact information. Our QR Code Generator creates high-quality QR codes in multiple formats with customizable size, color, and error correction levels. Perfect for marketing campaigns, contactless menus, business cards, event tickets, and more.

Multiple Output Formats
Customizable Size & Color
Error Correction Levels
High-Quality Output
Fast Generation
Simple Integration
Contact Information QR Codes
URL QR Codes

API Playground

Test the API endpoints with different parameters and see the responses in real-time.

Generate a QR code using a GET request with query parameters

GET/api/qr-code-generator/

Request Parameters

GET/api/qr-code-generator/

Required Parameters1

string

The content to encode in the QR code (URL, text, etc.)

Optional Parameters

6 available
string

Output format (png, svg, utf8, or json)

integer

Size of the QR code in pixels (100-1000)

string

Error correction level (L, M, Q, H)

string

Color of the QR code (hex code)

string

Background color (hex code)

integer

Margin around the QR code (0-20)

Sample Code

curl
1
2
3
curl -X GET "/api/qr-code-generator/?data=https://api-marketplace.dev&format=png&size=250&errorCorrectionLevel=M&color=#000000&backgroundColor=#FFFFFF&margin=4" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY"