ADVERTISEMENT
Advertisement
⚡ Free · No Signup

Generate stunning
QR Codes instantly

Free QR codes forever. Premium features for pros — logos, hi-res, batch exports.

⬡ QR Generator
https://example.com → QR_001.png
https://shop.com → QR_002.png
https://blog.io → QR_003.png
🔒

Batch Generation

Generate hundreds of QR codes and download as a ZIP file

⬡ Customize
256 px
M
📎
Click to upload logo (Premium)

Get 3 free premium QR codes 🎁

Drop your email and we'll send a coupon for 3 hi-res premium downloads with logo support — free.

No spam, ever. Unsubscribe anytime.

Everything you need

From quick one-off codes to enterprise batch exports

🔗

URL QR

Link to any website or campaign page.

📶

WiFi Sharing

Connect guests with a single scan.

👤

vCard

Share contact details instantly.

🎨

Custom Colors

Match your brand palette.

🏷️

Logo Embed ✦

Your logo in the center of the code.

📦

Batch Export ✦

Hundreds of codes → single ZIP.

ADVERTISEMENT
Advertisement

Simple pricing

Start free. Upgrade when you need power.

Free
$0 / forever
Personal use
  • Unlimited QR codes
  • URL, Text, WiFi, vCard
  • Custom colors
  • PNG 256px download
  • High-res export
  • Logo overlay
  • Batch generation
Popular
Pro
$9 / mo
Freelancers & small biz
  • Everything in Free
  • Hi-res PNG up to 2048px
  • SVG vector download
  • Logo / image overlay
  • Batch (50/day)
  • No watermark
  • API access
Business
$29 / mo
Teams & agencies
  • Everything in Pro
  • Unlimited batch
  • REST API access
  • Dynamic QR codes
  • Scan analytics
  • 5 team members
  • Priority support

Share QRForge

Found this useful? Spread the word.

𝕏 Tweet Facebook LinkedIn
ADVERTISEMENT
Advertisement
We respect your privacy. This policy explains what data QRForge collects, how we use it, and your rights.

1. Information We Collect

QRForge is designed to be privacy-first. We collect minimal data to operate the service:

  • QR content you enter — processed client-side in your browser. We do not store the URLs, text, or data you encode into QR codes.
  • Email address — only if you voluntarily submit it for our newsletter or premium coupon.
  • Usage analytics — anonymised page-view counts (no personal identifiers) via a privacy-respecting analytics tool.
  • Payment data — handled entirely by Stripe. We never see or store your card details.

2. Cookies

We use strictly necessary cookies to keep you logged into a premium account (if applicable). We use no advertising cookies or cross-site tracking cookies. Third-party ad networks (Google AdSense) may set their own cookies as described in their privacy policy.

3. How We Use Your Data

  • To provide and improve the QRForge service
  • To send you the newsletters or coupons you signed up for
  • To process premium subscription payments
  • To comply with legal obligations

4. Third-Party Services

QRForge uses the following third-party services, each with its own privacy policy:

ServicePurpose
Google AdSenseDisplay advertising
StripePayment processing
Mailchimp / ConvertKitEmail marketing
Cloudflare CDNPerformance & security

5. Data Retention

Email addresses are retained until you unsubscribe. Account data is retained for the duration of your subscription plus 90 days. You may request deletion at any time by emailing [email protected].

6. Your Rights

Depending on your location, you may have rights under GDPR, CCPA, or other laws including: access, correction, deletion, portability, and objection to processing. Contact us at [email protected] to exercise these rights.

7. Children's Privacy

QRForge is not directed to children under 13. We do not knowingly collect data from children.

8. Changes to This Policy

We may update this policy periodically. Continued use of QRForge after changes constitutes acceptance of the updated policy.

9. Contact

Questions about this policy? Email us at [email protected].

By using QRForge, you agree to these terms. Please read them carefully.

1. Acceptance of Terms

By accessing or using QRForge ("the Service"), you agree to be bound by these Terms of Service and our Privacy Policy. If you do not agree, do not use the Service.

2. Description of Service

QRForge provides a web-based QR code generation tool with free and paid premium tiers. Features include URL, text, WiFi, and vCard QR code generation, custom colors, logo embedding (premium), and batch generation (premium).

3. Acceptable Use

You agree not to use QRForge to generate QR codes that:

  • Link to malware, phishing sites, or illegal content
  • Facilitate fraud, spam, or harassment
  • Violate any applicable laws or regulations
  • Infringe the intellectual property rights of others

We reserve the right to suspend accounts found in violation without notice.

4. Premium Subscriptions

  • Subscriptions are billed monthly or annually in advance
  • Cancel any time — you retain access until the end of the billing period
  • Refunds are available within 7 days of purchase if you have not downloaded any premium assets
  • We reserve the right to change pricing with 30 days notice

5. Intellectual Property

QR codes you generate are yours. You retain all rights to the content you encode. The QRForge brand, logo, and website design are owned by QRForge and may not be reproduced without permission.

6. Disclaimer of Warranties

The Service is provided "as is" without warranties of any kind. We do not guarantee uninterrupted availability, error-free operation, or fitness for a particular purpose.

7. Limitation of Liability

To the maximum extent permitted by law, QRForge shall not be liable for any indirect, incidental, special, or consequential damages arising from your use of the Service.

8. Governing Law

These terms are governed by the laws of the State of Delaware, USA, without regard to conflict of law principles.

9. Changes to Terms

We may update these terms at any time. Continued use of the Service after changes constitutes acceptance.

10. Contact

Questions? Email [email protected].

The QRForge REST API lets you generate QR codes programmatically at scale. Available on the Business plan.

Authentication

All API requests require an API key passed in the request header:

Authorization: Bearer YOUR_API_KEY

Get your API key from the Dashboard → Settings → API after subscribing to the Business plan.

Base URL

https://api.qrforge.app/v1

Endpoints

POST
/generate

Generate a single QR code and return a PNG image or base64 string.

{ "data": "https://yoursite.com", "size": 512, "fg_color": "#000000", "bg_color": "#ffffff", "error_correction": "M", "logo_url": "https://yoursite.com/logo.png", "format": "png" }

Response:

{ "success": true, "url": "https://cdn.qrforge.app/qr/abc123.png", "base64": "iVBORw0KGgoAAAANS..." }
POST
/batch

Generate up to 500 QR codes in a single request. Returns a ZIP download URL.

{ "items": [ { "data": "https://site1.com", "filename": "code1" }, { "data": "https://site2.com", "filename": "code2" } ], "size": 512, "fg_color": "#000000", "bg_color": "#ffffff" }

Response:

{ "success": true, "zip_url": "https://cdn.qrforge.app/batch/xyz789.zip", "count": 2, "expires_at": "2025-02-01T12:00:00Z" }
GET
/usage

Check your current API usage and limits.

{ "plan": "business", "requests_today": 142, "requests_limit": 10000, "batch_today": 3, "reset_at": "2025-01-02T00:00:00Z" }

Rate Limits

PlanRequests/day
Pro500
Business10,000
EnterpriseUnlimited

Error Codes

CodeMeaning
401Invalid or missing API key
422Invalid request parameters
429Rate limit exceeded
500Internal server error

Need help? Email [email protected] or join our Developer Discord.

Guide

10 Creative Ways to Use QR Codes in Your Business

From restaurant menus to product packaging — here are 10 proven ways QR codes boost engagement and sales.

Jan 15, 2025 · 5 min read
Tutorial

How to Add a Logo to Your QR Code (And Keep It Scannable)

Logo QR codes look great, but there's a right way to do it. Learn about error correction levels and safe logo sizes.

Jan 8, 2025 · 4 min read
Marketing

QR Codes for Print Marketing: A Complete 2025 Guide

Business cards, flyers, posters — how to use QR codes to bridge your print and digital marketing.

Dec 28, 2024 · 7 min read
Tech

QR Code Error Correction: L vs M vs Q vs H Explained

What do the error correction levels actually mean, and which should you use? We break it down simply.

Dec 15, 2024 · 3 min read
API

Generating QR Codes at Scale with the QRForge API

Building an e-commerce platform or event ticketing system? Here's how to integrate QR generation into your stack.

Dec 5, 2024 · 6 min read
WiFi

WiFi QR Codes: The Easiest Way to Share Your Network

Print a WiFi QR code for your office, café, or home. Guests scan once — no passwords typed ever again.

Nov 22, 2024 · 3 min read
📧
General Enquiries
[email protected]
🔑
API & Developer Support
[email protected]
💳
Billing & Subscriptions
[email protected]
🔒
Privacy & Legal
[email protected]