QRCode SuiteQR-Plattform
Entwickler

QR-Code-API für Entwickler

QRCode Suite stellt auf der Plattform eine versionierte REST-API bereit: QR-Codes erstellen, Ziele umleiten und Scan-Analysen abrufen — mit derselben Engine wie das Dashboard. Authentifiziert wird mit scoped API-Keys aus dem Dashboard. Ein Conversion-Endpoint, HMAC-signierte Webhooks und ein JavaScript-Pixel werden zusammen mit dem Conversion-Reporting ausgerollt.

API-Zugriff ist im Business- und Agency-Plan enthalten.

Kostenlos starten Preise ansehen

QR code CRUD endpoints

List, create, update, archive, and duplicate QR codes under /api/v1/qrcodes. Changing a destination via PATCH takes effect on the very next scan — the printed code never changes.

Scoped API keys

Mint API keys from the dashboard with read-only or read-write scopes and per-key rate limits. Keys are workspace-bound; keep them server-side, never in browser code.

Scan analytics over the API

Pull scans, devices, countries, referrers, and unique-visitor counts per code from /api/v1/qrcodes/:id/analytics — the same privacy-first data the dashboard charts, with no raw IPs anywhere.

Conversion API (rolling out)

POST purchase and signup events to /api/v1/events/conversion to attribute revenue back to the scan that produced it. Rolling out together with campaign ROI reporting.

Webhooks (rolling out)

Subscribe endpoints to scan and conversion events. Deliveries are HMAC-signed so your handler can verify authenticity, with retry-and-backoff on transient failures.

JavaScript pixel (rolling out)

A lightweight, consent-aware pixel links on-site conversions to prior QR scans without cookies or fingerprinting — designed to match the platform’s no-raw-IP privacy model.

Die Endpoints in der Praxis

JSON rein, JSON raus — authentifiziert mit einem Bearer-API-Key.

curl -X POST https://qrcode-suite.com/api/v1/qrcodes \
  -H "Authorization: Bearer $QRCS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "dynamic_url",
    "name": "Spring packaging insert",
    "destination": "https://example.com/spring-landing"
  }'
# Re-point a printed code — no reprint needed
curl -X PATCH https://qrcode-suite.com/api/v1/qrcodes/qr_8f3k2 \
  -H "Authorization: Bearer $QRCS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "destination": "https://example.com/summer-landing" }'
# Conversion API (rolling out)
curl -X POST https://qrcode-suite.com/api/v1/events/conversion \
  -H "Authorization: Bearer $QRCS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "order_id": "1042",
    "value": 49.90,
    "currency": "EUR"
  }'

Häufig gestellte Fragen

Was ist QRCode Suite?

QRCode Suite ist eine eigenständige QR-Plattform: Erstellen Sie ein kostenloses Konto und generieren Sie markenkonforme dynamische QR-Codes im Browser — ganz ohne WordPress. Connectoren bringen dieselben Codes zu WordPress und WooCommerce, wo Bestellungen einzelnen QR-Codes zugeordnet werden können.

Funktioniert QRCode Suite ohne WordPress?

Ja. QRCode Suite ist ein eigenständiges SaaS: registrieren, QR-Codes erstellen und Scans verfolgen — alles auf qrcode-suite.com. Das WordPress-Plugin ist ein optionaler Connector, der Ihre Codes in wp-admin bringt und die WooCommerce-Bestell-Attribution ergänzt.

Benötigt QRCode Suite ein separates Abonnement?

Der Free-Plan ist kostenlos verfügbar — ohne Kreditkarte. Bezahlpläne (Pro 9 €, Business 29 €, Agency 79 € pro Monat) schalten unbegrenzte Codes, Redirect-Regeln und mehr frei. Es gibt keine Gebühr pro Scan.

Welche QR-Code-Typen unterstützt QRCode Suite?

QRCode Suite unterstützt 22 QR-Code-Typen: Statische URL, Dynamische URL, Klartext, Telefon, E-Mail, Standort, Link Hub, SMS, WhatsApp, Wi-Fi, vCard, Social-Profil, PDF, Datei-Download, App-Download, Coupon, Kalender-Event, Lead-Formular, Bewertungserfassung, Großhandelsanfrage, Treueprämie und Custom Payload.

Kann ich das Ziel eines QR-Codes nach dem Druck ändern?

Ja. Dynamische QR-Codes nutzen eine kurze Weiterleitungs-URL. Sie können das Ziel jederzeit aus Ihrem Dashboard heraus aktualisieren, ohne den Code neu zu erstellen oder zu drucken.

Ist QRCode Suite DSGVO-konform?

QRCode Suite ist im Sinne der DSGVO konzipiert: Rohe IP-Adressen werden nie gespeichert — Besucher werden über Schlüssel-Hashes gezählt —, Bot-Traffic wird automatisch gefiltert, und Scan-Ereignisse werden nach Ablauf des Aufbewahrungsfensters Ihres Tarifs gelöscht. Wenden Sie sich für Ihre konkreten Pflichten an Ihr Rechtsteam.

Auf der QRCode-Suite-API bauen

Scoped API-Keys und REST-Endpoints — ab Business enthalten.

Business-Plan ansehenDokumentation lesen