Skip to content

Build Dynamic QR Workflows with the QRLynx API

Create dynamic URL QR codes, repoint their destinations, read scan totals, and render SVG files from your own systems with scoped API keys.

Selected QR Code Type

A focused REST API for QRLynx dynamic URL codes

QRLynx API v1 lets Business and Enterprise accounts create dynamic URL QR codes, update their destination or name, read total and unique scans plus the last scan time, and render the stored short link as SVG. It uses bearer API keys with qr:read and qr:write scopes.

The API reuses the same QRLynx QR workflow as the dashboard. Destination validation, URL safety checks, account ownership, and the plan's dynamic QR limit still apply. Read the developer documentation, inspect the public OpenAPI 3.1 specification, or manage keys from Account API Keys.

What your integration can do

Four API operations cover creation, updates, reporting, and SVG delivery.

Create

POST a valid HTTP or HTTPS destination and optional name. The response includes the QR id, stored short URL, and SVG markup.

arrow-path

Repoint

PATCH the destination while keeping the same QR id and printed short link, or update the account-facing name.

Read Scan Totals

GET the QR detail with total scans, unique scans, last scanned time, current destination, short URL, and active status.

document-arrow-down

Render SVG

GET the QR SVG when your application needs scalable artwork generated from the stored QRLynx short link.

Limit Key Access

Choose read-only or read and write access, then revoke a key from the account without changing application users.

Reuse Product Safety

API creates and destination changes pass through QRLynx validation, safety scanning, ownership checks, and plan limits.

QRLynx API v1 endpoint map

Use the narrowest key scope that covers each operation.

QRLynx API v1 endpoint map. Use the narrowest key scope that covers each operation.
EndpointScopeResult
POST /api/v1/qr
qr:write
Create a dynamic URL QR and return its id, destination, short URL, and SVG
GET /api/v1/qr/{id}
qr:read
Read allowlisted QR details and scan totals
PATCH /api/v1/qr/{id}
qr:write
Update the destination, name, or both
GET /api/v1/qr/{id}.svg
qr:read
Return image/svg+xml for the stored QR short link
GET /api/v1/openapi.json
Public
Return the OpenAPI 3.1 discovery document

How to make the first QRLynx API request

Provision one scoped key, create a test QR, verify the response, and prepare the integration for production.

1

Use a Business or Enterprise workspace

API access begins on Business at $29 per month and is also included with Enterprise.

2

Create a named API key

An account owner or admin opens Account API Keys, gives the key a clear integration name, and chooses read-only or read and write access.

3

Copy the secret once

Store the qrl_live_ secret in a server-side secret manager when QRLynx displays it. The full value cannot be retrieved later.

4

Send a bearer-authenticated request

Call POST /api/v1/qr with application/json, a valid HTTP or HTTPS destination, and an optional name.

5

Save the returned identifiers

Keep the returned QR id and stored short URL with the record in your system. Use the returned SVG or request it again by id.

6

Test create, read, and repoint

Scan the generated QR, read its details, change the test destination with PATCH, and confirm the same QR reaches the new URL.

7

Operate with scoped keys

Use read-only keys for reporting jobs, reserve write keys for creation or repointing, monitor last use in QRLynx, and revoke retired keys.

Ready to automate a QR workflow

Review the API contract, then create a scoped key

Start with the endpoint examples and OpenAPI schema. Business and Enterprise accounts can create keys from the account workspace.

Read Developer Docs The OpenAPI 3.1 specification is public at /api/v1/openapi.json.
Need API access? See Business Plans

Keep API keys in server-side secrets

Send the key in the Authorization: Bearer qrl_live_... header from a trusted backend. QRLynx shows the full secret once, stores only its SHA-256 hash and a display prefix, and applies revocation, account status, current plan, and scope checks on each request.

Where the QR Code API fits

Use API v1 when another system owns the record and QRLynx supplies the managed QR layer.

archive-box

Asset Management

Create a dynamic QR when a new asset record is approved, then store the QRLynx id and short URL beside it.

Print Operations

Render SVG artwork from a backend workflow and keep the same printed code when the destination changes.

Campaign Systems

Create named campaign QRs and repoint them when a promotion or landing page moves.

Internal Reporting

Use a read-only key to bring total scans, unique scans, and the last scan time into an internal report.

Current API v1 boundaries

Design the integration around the contract that is available today.

Current API v1 boundaries. Design the integration around the contract that is available today.
AreaCurrent v1 contractPlanning note
QR type
Dynamic URL QR creation
Other dashboard QR types and GS1 Digital Link use their existing product workflows
Input
HTTP or HTTPS destination, optional name
Unknown JSON fields are rejected
Reporting
Total scans, unique scans, last scanned time
Use the account analytics experience for deeper dimensions
Automation model
Synchronous REST and JSON
Poll the read endpoint when a workflow needs current scan totals
Image output
SVG
Use dashboard downloads for other export formats
Ownership
The API key acts on its QRLynx owner workspace
Requests cannot read QR records from another workspace

Connect your system to QRLynx dynamic QR codes

Use the public developer documentation to plan the request flow, then enable API access with Business or Enterprise.

QRLynx QR Code API questions

Answers about access, endpoints, keys, limits, output, and QR ownership.

Which QRLynx plans include API access?

API access is included with Business and Enterprise. Business starts at $29 per month. The free Starter plan, Starter+, and Pro use the dashboard and their included product workflows.

What can QRLynx API v1 create?

API v1 creates dynamic URL QR codes from a valid HTTP or HTTPS destination and an optional name. The response returns the QR id, destination, stored short URL, and SVG markup.

Can the API change a QR destination after printing?

Yes. Send PATCH /api/v1/qr/{id} with a new destination. QRLynx updates the managed destination while the QR id and printed short link remain the same.

Which scan data can the API return?

GET /api/v1/qr/{id} returns total scans, unique scans, the last scanned time, active status, current destination, short URL, name, type, and creation time.

How are QRLynx API keys authenticated?

Send the secret in an Authorization: Bearer qrl_live_... header. QRLynx stores the key as a SHA-256 hash, checks it live, and applies account, plan, expiry, creator-status, and scope controls.

What do qr:read and qr:write allow?

qr:read covers QR detail and SVG requests. qr:write covers create and repoint requests and also implies read access.

What are the API rate limits?

Current per-key limits are 120 reads, 60 creates, and 20 repoint operations per minute. A separate per-IP protection layer covers authentication traffic. QRLynx can tune these operational limits as usage data grows.

How do I revoke an API key?

An owner or admin opens Account API Keys and revokes the key. Authentication reads the live key record, so revocation applies on the next request.

Does API v1 return PNG, PDF, or SVG?

API v1 returns SVG, including SVG markup on create and image/svg+xml from GET /api/v1/qr/{id}.svg. Other download formats remain available through the QRLynx dashboard workflow.

Where is the machine-readable API definition?

The public OpenAPI 3.1 document is available at /api/v1/openapi.json. The /developers page provides authentication guidance, endpoint summaries, curl examples, errors, and plan access.

Continue with the developer resources

Use the QRLynx developer documentation for copy-ready requests, the OpenAPI 3.1 specification for tooling, and Dynamic URL QR Codes for the destination-management model behind repointing.

QRLynx pricing plans

Starter plan details selected

Starter

Free forever
$0 /month
Free forever
  • 3 Dynamic QR Codes Editable QR codes: change the destination URL anytime.
  • 1 Folder
  • 5 MB per PDF upload
  • AI Insight Summaries Every plan gets plain-language AI scan summaries; Starter+ and higher add anomaly, trend & recommendation detail plus manual refresh.
  • 3 Months Analytics How far back your analytics go. You keep your scan totals, charts, top QR codes, and location and device breakdowns for the whole window. Individual scan-by-scan records (and the detailed CSV export) cover the latest 3 months on every plan.
Most Popular

Pro

Best value for campaigns
$14 /month
Billed monthly
  • 300 Dynamic QR Codes Editable QR codes: change the destination URL anytime.
  • 25 Folders
  • 15 MB per PDF upload
  • 2 Years Analytics How far back your analytics go. You keep your scan totals, charts, top QR codes, and location and device breakdowns for the whole window. Individual scan-by-scan records (and the detailed CSV export) cover the latest 3 months on every plan.
  • Country Analytics See which countries your scans come from.
  • Password Protection Require a password before showing QR content.
  • Smart Redirect Rules Redirect by device, country, or time.
  • Access Consent Screens Show a consent / disclaimer screen before the QR destination loads.
  • Expiry Rules Auto-expire a QR code by date or after a set number of scans.
  • QR Scheduling Schedule when a QR code is active with start and end time windows.
  • Bulk Dynamic QR: 100/batch Bulk-create dynamic codes from a CSV, each editable after printing with its own scan analytics. This goes beyond the free static batch tool. Pro includes 5 batches/month, Business 10; Enterprise batches are unlimited.
  • Full AI Insights Every plan gets plain-language AI scan summaries; Starter+ and higher add anomaly, trend & recommendation detail plus manual refresh.
  • SVG / PDF Downloads Print-ready vector formats: SVG and PDF stay razor sharp at any size, from a business card to a billboard.

Business

For teams and agencies
$29 /month
Billed monthly
  • 1,000 Dynamic QR Codes Editable QR codes: change the destination URL anytime.
  • 100 Folders
  • 25 MB per PDF upload
  • 3 Years Analytics How far back your analytics go. You keep your scan totals, charts, top QR codes, and location and device breakdowns for the whole window. Individual scan-by-scan records (and the detailed CSV export) cover the latest 3 months on every plan.
  • City, Device & Browser Analytics Break scan activity down by city, device type, operating system, and browser.
  • CSV Analytics Export
  • Bulk Dynamic QR: 250/batch Bulk-create dynamic codes from a CSV, each editable after printing with its own scan analytics. This goes beyond the free static batch tool. Pro includes 5 batches/month, Business 10; Enterprise batches are unlimited.
  • Team Management (10 Members) Invite members to collaborate on QR codes, analytics, and folders.
  • Lead Capture Forms Collect leads directly from QR code scans.
  • Email Reports
  • Public API Access Create and repoint dynamic QR codes and read scan analytics from your own systems with a REST API and scoped keys.
  • Full AI Insights Every plan gets plain-language AI scan summaries; Starter+ and higher add anomaly, trend & recommendation detail plus manual refresh.
  • Country Analytics See which countries your scans come from.
  • Password Protection Require a password before showing QR content.
  • Smart Redirect Rules Redirect by device, country, or time.
  • Access Consent Screens Show a consent / disclaimer screen before the QR destination loads.
  • Expiry Rules Auto-expire a QR code by date or after a set number of scans.
  • QR Scheduling Schedule when a QR code is active with start and end time windows.
  • SVG / PDF Downloads Print-ready vector formats: SVG and PDF stay razor sharp at any size, from a business card to a billboard.

Enterprise

For white-label scale
$99 /month
Billed monthly
  • 5,000 Dynamic QR Codes Editable QR codes: change the destination URL anytime.
  • 500 Folders
  • 50 MB per PDF upload
  • Unlimited Analytics How far back your analytics go. You keep your scan totals, charts, top QR codes, and location and device breakdowns for the whole window. Individual scan-by-scan records (and the detailed CSV export) cover the latest 3 months on every plan.
  • Bulk Dynamic QR: 1,000/batch Bulk-create dynamic codes from a CSV, each editable after printing with its own scan analytics. This goes beyond the free static batch tool. Pro includes 5 batches/month, Business 10; Enterprise batches are unlimited.
  • Team Management (100 Members) Invite members to collaborate on QR codes, analytics, and folders.
  • White Label Domains Use your own domain for QR redirects (e.g. qr.yourbrand.com).
  • Retargeting Pixels Facebook, Google & GTM tracking pixels on QR landing pages.
  • Dedicated Success Manager A dedicated contact for onboarding and ongoing support.
  • Full AI Insights Every plan gets plain-language AI scan summaries; Starter+ and higher add anomaly, trend & recommendation detail plus manual refresh.
  • Country Analytics See which countries your scans come from.
  • City, Device & Browser Analytics Break scan activity down by city, device type, operating system, and browser.
  • CSV Analytics Export
  • Password Protection Require a password before showing QR content.
  • Smart Redirect Rules Redirect by device, country, or time.
  • Access Consent Screens Show a consent / disclaimer screen before the QR destination loads.
  • Expiry Rules Auto-expire a QR code by date or after a set number of scans.
  • QR Scheduling Schedule when a QR code is active with start and end time windows.
  • Lead Capture Forms Collect leads directly from QR code scans.
  • Email Reports
  • Public API Access Create and repoint dynamic QR codes and read scan analytics from your own systems with a REST API and scoped keys.
  • SVG / PDF Downloads Print-ready vector formats: SVG and PDF stay razor sharp at any size, from a business card to a billboard.

Core features included in every plan

(free and paid, no exceptions)
  • Unlimited Static QR Codes
  • QR Pause & Activate
  • Unlimited Scans
  • Dynamic Projects Are Preserved
  • 61 QR Code Types
  • Apple & Google Wallet Passes
  • Custom Logo Upload
  • QR Code Frames
  • No Watermark
  • No Scan Ads
  • JPG, PNG, WEBP & HD Downloads
  • Bulk Static QR (up to 100/batch)

50% off for verified nonprofits, schools & open-source projects: contact us to apply.

Ready to Transform Your QR Code Experience?

Create, customize, and track QR codes with a platform built for businesses, creators, restaurants, agencies, and teams worldwide.

Talk to Sales
Free forever
Unlimited scans
Dynamic projects preserved
By , Founder · Reviewed against our editorial policy · Last verified July 5, 2026 · Methodology · Editorial policy