VOOZH about

URL: https://apify.com/web.harvester/qr-code-factory

โ‡ฑ QR Code Generator & Reader - Batch QR API ยท Apify


Pricing

$5.00/month + usage

Go to Apify Store

Generate and read QR codes at scale. Create custom QR codes from URLs, text, WiFi credentials, vCards. Decode QR codes from images. Batch processing, custom colors, PNG/SVG output, configurable error correction. No ads, no limits, full API access.

Pricing

$5.00/month + usage

Rating

0.0

(0)

Developer

๐Ÿ‘ Web Harvester

Web Harvester

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

4 months ago

Last modified

Share

๐Ÿ“ฑ Generate beautiful QR codes or decode existing ones. Batch processing, custom colors, multiple formats. No ads, no limits, no tracking.

๐Ÿ‘ Apify Actor
๐Ÿ‘ License: MIT

๐ŸŽฏ What This Actor Does

A complete QR code solution with two modes:

Generate Mode

  • Create QR codes from text, URLs, WiFi credentials, or any data
  • Customize colors, size, and error correction level
  • Output as PNG or SVG
  • Batch generate hundreds of QR codes at once

Read Mode

  • Decode QR codes from uploaded images
  • Decode from image URLs
  • Extract embedded data, links, or text

๐Ÿš€ Use Cases

Use CaseExample
MarketingQR codes linking to landing pages
WiFi SharingEncode network credentials
Event TicketsGenerate unique ticket codes
Product LabelsLink to product information
Business CardsvCard contact information
InventoryAsset tracking codes
PaymentsPayment links and crypto addresses

๐Ÿ“ฅ Input Examples

Generate QR Codes

{
"mode":"generate",
"contents":[
"https://apify.com",
"WIFI:T:WPA;S:MyNetwork;P:MyPassword;;",
"mailto:hello@example.com"
],
"size":400,
"format":"png",
"errorCorrection":"M",
"darkColor":"#000000",
"lightColor":"#FFFFFF"
}

Read/Decode QR Codes

{
"mode":"read",
"imageUrls":[
"https://example.com/qr-code.png"
]
}

โš™๏ธ Configuration

Generate Options

ParameterTypeDefaultDescription
contentsarray-Strings to encode as QR codes
sizeinteger400Image size in pixels (100-2000)
formatstringpngOutput format: png or svg
errorCorrectionstringMError correction: L/M/Q/H
darkColorstring#000000QR module color (hex)
lightColorstring#FFFFFFBackground color (hex)

Error Correction Levels

LevelRecoveryBest For
L~7%Maximum data capacity
M~15%General use (default)
Q~25%Light damage tolerance
H~30%Logos/heavy damage

Read Options

ParameterTypeDescription
imageFilestringUpload image directly
imageUrlsarrayURLs to images containing QR codes

๐Ÿ“ค Output

Generate Mode

{
"mode":"generate",
"input":"https://apify.com",
"qrCode":"https://api.apify.com/v2/key-value-stores/.../records/qr-abc123.png",
"format":"png",
"size":400,
"status":"success",
"createdAt":"2024-01-15T10:30:00.000Z"
}

Read Mode

{
"mode":"read",
"input":"https://example.com/qr.png",
"decodedContent":"https://apify.com",
"status":"success",
"readAt":"2024-01-15T10:30:00.000Z"
}

๐ŸŽจ QR Code Data Types

URL

https://example.com

WiFi Network

WIFI:T:WPA;S:NetworkName;P:Password;;

Email

mailto:email@example.com?subject=Hello

Phone

tel:+1234567890

SMS

sms:+1234567890?body=Hello

vCard Contact

BEGIN:VCARD
VERSION:3.0
FN:John Doe
ORG:Company
TEL:+1234567890
EMAIL:john@example.com
END:VCARD

Calendar Event

BEGIN:VEVENT
SUMMARY:Meeting
DTSTART:20240115T100000Z
DTEND:20240115T110000Z
END:VEVENT

๐Ÿš€ Quick Start

Using Apify Console

  1. Select mode: generate or read
  2. Enter content or upload images
  3. Configure options
  4. Click Start
  5. Download from Key-Value Store

Using API

# Generate QR codes
curl-X POST "https://api.apify.com/v2/acts/YOUR_USERNAME~qr-code-factory/runs?token=YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"mode": "generate",
"contents": ["https://example.com"],
"size": 500
}'
# Read QR codes
curl-X POST "https://api.apify.com/v2/acts/YOUR_USERNAME~qr-code-factory/runs?token=YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"mode": "read",
"imageUrls": ["https://example.com/qr.png"]
}'

Using JavaScript

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_TOKEN'});
// Generate QR codes
const run =await client.actor('YOUR_USERNAME/qr-code-factory').call({
mode:'generate',
contents:[
'https://my-website.com',
'https://my-app.com/download'
],
size:600,
darkColor:'#1a365d',
lightColor:'#ffffff'
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
for(const item of items){
console.log(`QR for ${item.input}: ${item.qrCode}`);
}

Using Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_TOKEN')
# Generate QR codes
run = client.actor('YOUR_USERNAME/qr-code-factory').call(run_input={
'mode':'generate',
'contents':['https://example.com'],
'size':400
})
items = client.dataset(run['defaultDatasetId']).list_items().items
for item in items:
print(f"Download: {item['qrCode']}")

๐Ÿ’ก Advanced: Batch Generation

Generate hundreds of unique QR codes:

const products =awaitfetchProducts();// Your product list
const run =await client.actor('YOUR_USERNAME/qr-code-factory').call({
mode:'generate',
contents: products.map(p=>`https://mystore.com/product/${p.id}`),
size:300,
errorCorrection:'H'// High for printing
});
// Download all QR codes
const{ items }=await client.dataset(run.defaultDatasetId).listItems();

๐Ÿ’ฐ Cost Estimation

QR CodesApprox. TimeCompute Units
10~5 seconds~0.002
100~20 seconds~0.01
1,000~2 minutes~0.08

๐Ÿ”ง Technical Details

  • Node.js: 22.x
  • Libraries: qrcode, jsQR, sharp
  • Max Size: 2000x2000 pixels
  • Memory: 256MB-512MB

โ“ FAQ

What's the maximum content length?

QR codes can store up to 4,296 alphanumeric characters, but ~500 is practical for reliable scanning.

Can I add a logo to the QR code?

Not directly in this Actor. Generate with H error correction, then overlay a logo covering up to 30% of the center.

Why isn't my QR code scanning?

  • Increase size for print materials
  • Use H error correction for durability
  • Ensure sufficient contrast between colors

What image formats can be read?

PNG, JPEG, WebP, and most common formats supported by Sharp.

๐Ÿ“„ License

MIT License - see LICENSE for details.

You might also like

QR Code Toolkit โ€” Bulk Generate with Custom Colors & Logos

accurate_pouch/qr-code-toolkit

Generate QR codes in bulk with custom colors, error correction levels, and logo overlays. PNG, SVG, or base64 output. 10 QR codes free per run.

๐Ÿ‘ User avatar

Manchitt Sanan

2

Bulk QR Code Generator

onescales/bulk-qr-codes

Generate multiple QR codes at once from URLs, text, or any string input. Perfect for creating QR codes in bulk for marketing campaigns, event tickets, product labels, or any other use case where you need multiple QR codes quickly. Enjoy our QR Code tool today!

70

5.0

QR Code Generator

zsoftware/qr-code-generator

The QR Code Generator generates QR codes from a list of text values or URLs. It stores the generated QR codes as PNG images in a ZIP file, which is downloadable. The actor also pushes metadata for each QR code, including the original value, filename, and index, for easy reference.

QR Generator Apify

calm_necessity/QR-Generator-Apify

QR Code Generator is an Apify Actor that creates QR codes from URLs using an API. Generate QR images instantly with optional logo overlay, title, and attribution. Ideal for marketing campaigns, product links, events, and automated workflows.

๐Ÿ‘ User avatar

Taher Ali Badnawarwala

6

QR Code Generator

moving_beacon-owner1/qr-generater

A versatile tool to **generate QR codes** from text, URLs, WiFi credentials, email, phone numbers, or vCard contact information. Perfect for quick sharing, marketing, or automation workflows.

2

Awesome QR Code Api Actor

amaranth_nylon/QR-code-api-actor

The Awesome QR Code API actor is a utility-focused automation designed to programmatically generate QR codes with extensive customization options. It enables developers, integrators, and automation workflows to create high-quality QR codes on demand without manual design tools.