
QR Code Generator
Tools & Utilities
4.7•86 reviews
120ms
Provider: API Marketplace
Version: 1.0.0
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/
Use Case Example
This endpoint is perfect for quickly generating QR codes for websites, marketing materials, digital business cards, or contact information sharing. Simply provide the URL or text you want to encode, and optionally customize the appearance and format of the QR code.
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"
Ready-to-use code
This is ready-to-use code you can copy into your project. Just replace
YOUR_API_KEY
with your actual API key from your developer dashboard.