Create a QR code
QR TheCode² supports 15 types of QR codes. Each one encodes a different kind of content — URL, contact, WiFi, payment and more.
Go to your Dashboard
Sign in and click 'Create QR code' from the dashboard.
Choose a type
Select the type that matches your use case: URL, WiFi, vCard, SMS, WhatsApp, Maps, Email, Event, Payment, etc.
Fill in the content
Enter the required data (URL, phone number, WiFi credentials, etc.).
Customize the design
Optionally adjust colors, add your logo and choose a dot style.
Download or share
Download PNG or SVG. Copy the QR image or the direct scan link.
Supported QR code types
URL link
Any website or landing page.
WiFi
Share WiFi credentials instantly.
vCard contact
Digital business card.
Pre-filled email compose.
Phone
One-tap call.
Direct message with pre-filled text.
Google Maps
Drop a pin or an address.
Plain text
Any plain text content.
Event
Add to calendar (iCal / Google).
Payment
PayPal, Stripe or custom.
Portfolio
Link to your work or Bio Link page.
Generate product barcodes
Create EAN-13, EAN-8, Code128 and other barcode formats for product labels, inventory or retail.
Open the barcode generator
From the dashboard, click 'Create' then select 'Barcode'.
Choose the format
Select EAN-13 for retail products, EAN-8 for small packaging, or Code128 for internal references.
Enter the code or data
Type your product number, SKU or reference. The barcode is generated in real time.
Download
Export as PNG or SVG. Ready to print on labels, packaging or signage.
Your personal link page
Create a mini landing page that centralises your biography, portfolio, CV, social links and any URL — all behind a single scannable QR.
Go to Bio Link in the dashboard
Click 'Bio Link' in the sidebar. Your public slug is auto-generated from your username.
Fill in your profile
Add your name, role, profile photo URL and a short biography.
Add your career links
Enter your Portfolio URL and CV/Resume URL. Both appear as prominent buttons on your page.
Add social links
LinkedIn, GitHub, Twitter/X, Instagram, YouTube and any custom URL. Each link is displayed as a button on your public page.
Preview and publish
See a live preview on mobile and tablet. Your page is immediately public at qrthecode2.com/bio/[your-slug].
Generate the QR code
Download the QR code that points to your Bio Link page and add it to your resume, business card or profile.
Portfolio & CV
Dedicated buttons for your portfolio and resume, visible at the top of your Bio Link page.
All your links
LinkedIn, GitHub, Twitter/X, Instagram, YouTube and custom links in one page.
Scannable QR
Download a QR code that links directly to your Bio Link page — embed it anywhere.
Custom profile
Name, role, photo, biography and colour theme — all customisable from the dashboard.
Edit without reprinting
Dynamic QR codes point to a redirect URL managed by QR TheCode². You can change the destination at any time without changing the QR code itself.
Create a dynamic QR code
When creating a QR code, choose 'Dynamic' in the type selector.
Set the initial destination
Enter the target URL. The QR will redirect scanners there immediately.
Change the destination anytime
Go to your dashboard, find the QR code, click 'Edit' and update the destination. The physical QR code remains unchanged.
Monitor scan stats
Every scan is tracked. See how many times your QR was scanned, from where and on which device.
Track every scan
See in real time how your QR codes and Bio Link pages are performing — by country, city, device, browser and OS.
Scans over time
Daily, weekly and monthly charts for every QR code.
Country & city
See where your QR codes are being scanned around the world.
Device & OS
iOS vs Android, mobile vs desktop, Chrome vs Safari.
Per-QR breakdown
Individual stats for each QR code or Bio Link in your account.
Open your dashboard
Navigate to a QR code and click 'Analytics' or 'Stats'.
Pick a date range
Filter by last 7 days, 30 days, 90 days or a custom range.
Export data
Download a CSV export of raw scan data (Pro and above).
Customise your QR code
Make QR codes that match your brand with colors, logos, dot styles, corner shapes and CTA frames.
Colors
Set the foreground and background color. Ensure enough contrast for reliable scanning.
Dot style
Choose between square, rounded, dots, classy or extra-rounded modules.
Logo
Upload your logo or icon to embed in the center of the QR code.
CTA frames
Add a frame around the QR with a call-to-action text such as 'Scan me' or 'Menu'.
Protect your QR codes
Limit who can access your QR destinations using password protection, expiry dates or scan limits.
Password protection
Require a password before the QR code redirects. Ideal for private documents or restricted content.
Expiry date
Set a date after which the QR will stop redirecting. Perfect for time-limited campaigns.
Scan limit
Define a maximum number of scans. Once reached, the QR stops working or redirects to an expired page.
Link health monitoring
QR TheCode² regularly checks that your destination URLs are still accessible and alerts you if a link goes down.
Integrate with the REST API
Automate QR code generation, manage dynamic codes and read analytics data from your own application.
Get an API key
Go to Dashboard → Settings → API Keys and create a key. API access requires a Business plan or above.
Authenticate requests
Pass your key in the Authorization header on every request.
Generate a QR code
POST /api/v1/qr with your payload (type, content, options) to generate a QR code programmatically.
Manage and track
List, update or delete QR codes and read analytics from your code.
# Authenticate
POST https://qrthecode2.com/api/v1/qr
# Header
"Authorization": "Bearer YOUR_API_KEY"
# Body (JSON)
{
"type": "url",
"content": "https://example.com",
"dynamic": true
}