Create Marketing QR Codes
Generate QR codes for marketing campaigns, flyers, posters, and promotional materials that link to landing pages.
QR codes for links, WiFi & contacts
Generate scannable QR codes for URLs, text, WiFi credentials, or contact cards. Outputs permanent image URLs in PNG, SVG, JPG, or GIF with control over size, colors, error correction, and margins. Ideal for marketing materials, events, and business cards.
Generate a QR code from any text or URL. Returns a permanent image URL and downloadable file. Supports custom size, colors, format (PNG/SVG/JPG/GIF), and error correction level.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "qr-code-generator",
"skill": "generate_qr",
"input": {
"data": "https://toolrouter.com"
}
}' \
https://api.toolrouter.com/v1/tools/callGenerate a QR code that lets people connect to a WiFi network by scanning. Encodes SSID, password, and encryption type in the standard WiFi QR format. Scanning auto-connects on most phones.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "qr-code-generator",
"skill": "generate_wifi_qr",
"input": {
"ssid": "MyHomeWifi",
"password": "supersecret123"
}
}' \
https://api.toolrouter.com/v1/tools/callGenerate a QR code containing a vCard contact card. When scanned, the contact is automatically added to the phone's address book. Supports name, phone, email, organization, title, URL, and address.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "qr-code-generator",
"skill": "generate_vcard_qr",
"input": {
"first_name": "Jane",
"last_name": "Smith",
"phone": "+1-555-123-4567",
"email": "jane@example.com",
"organization": "Acme Corp",
"title": "CTO",
"url": "https://acme.com"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"qr-code-generator","skill":"generate_qr","input":{}}' \
https://api.toolrouter.com/v1/tools/callGenerate QR codes for marketing campaigns, flyers, posters, and promotional materials that link to landing pages.
Create QR codes for event registration, attendee check-in, and conference badge scanning.
Translate and dub your marketing videos into multiple languages to reach international audiences.
Clean up recordings by removing background noise, hum, wind, and environmental sounds.
Launch offline-to-online marketing campaigns with custom QR codes, print material design, and location-optimized landing pages.
Create QR code marketing campaigns with custom visuals and AI-optimized landing pages.
Use `svg` when you need clean print output that can scale without blurring. Use `png`, `jpg`, or `gif` for web previews, social posts, or quick downloads.
Yes. The tool has dedicated WiFi and vCard flows, so you can share a network login or create a scannable contact card that adds the person to a phone address book.
You can change size, foreground and background colors, margins, and error correction. Higher error correction is useful when the code will be printed or placed near a logo.
Any URL, plain text, email address, phone number, or similar string works. The main generator handles most cases, while the WiFi and contact options are better for those specific formats.