ME-QR / API-QR-Code
Sie möchten QR-Codes in großem Umfang erstellen? Integrieren Sie unsere QR-Code-Generator-API in Ihr Unternehmen und automatisieren Sie Ihre Prozesse. Mit der Me-QR-API stehen Ihnen alle QR-Code-Typen zur Verfügung.
Generieren Sie Ihren ersten QR-Code in Sekundenschnelle mit einer einzigen API-Anfrage.
curl -X POST https://me-qr.com/api/v2/qr/link/create \
-H "Content-Type: application/json" \
-H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
-d '{
"qrFieldsData": {
"link": "https://example.com"
},
"format": "png",
"designType": "base"
}'
import requests
url = "https://me-qr.com/api/v2/qr/link/create"
headers = {
"Content-Type": "application/json",
"X-AUTH-TOKEN": "YOUR_API_TOKEN"
}
payload = {
"qrFieldsData": {
"link": "https://example.com"
},
"format": "png",
"designType": "base"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
const response = await fetch(
'https://me-qr.com/api/v2/qr/link/create',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-AUTH-TOKEN': 'YOUR_API_TOKEN'
},
body: JSON.stringify({
qrFieldsData: { link: 'https://example.com' },
format: 'png',
designType: 'base'
})
}
);
const data = await response.json();
console.log(data);
Verwenden Sie einen API-Schlüssel, um Ihre Anfragen zu authentifizieren.
Sie finden es in Ihrem Dashboard:
Fügen Sie Ihren API-Schlüssel dem Anfrageheader hinzu:
Authorization: Bearer YOUR_API_KEY
Alles, was Sie über API-Nutzung, Limits und Zugriff wissen müssen.
Beinhaltet bis zu 10.000 QR-Codes pro Monat.
$0.005 / Anfrage
Bis zu 100.000 Anfragen
$0.0025 / Anfrage
100k+ requests
kostenloses
3 API-Schlüssel · Gültig für 3 Tage
Premium
Unbegrenzte API-Schlüssel · Kein Ablaufdatum
API-Limits: ~1 Anfrage/Sek. · 50 Anfragen/Min. (gilt für alle Tarife)
Wenden Sie sich an den Support, um zusätzliche Funktionen freizuschalten.
Definieren Sie Inhalt, Aussehen und Ausgabe Ihrer QR-Codes mithilfe der verfügbaren Parameter.
| Parameter | Typ | Standard | Beschreibung |
|---|---|---|---|
| tokenerforderlich | string | — | API-Funktionalität Zugriffstoken |
| qrType | integer | 1 | QR-Code-Typ: 1=Link, 4=PDF, 5=E-Mail, 7=VCard… |
| qrFieldsData | object | [] | QR code content depending on the type (e.g. {"link": "https://…"}) |
| title | string | "Qr Code" | Der Titel des QR-Codes wird im Dashboard angezeigt. |
| format | string | "png" | Ausgabeformat: png, svg, jpg, jpeg, json |
| designType | string | "base" | QR-Designtyp: Basis oder Kunst |
| qrFolderOptions | object | null | Folder placement: {"folderName": "…", "subfolderName": "…"} |
| entryId | integer | null | Die ID des vorhandenen QR-Codes soll aktualisiert werden, anstatt einen neuen zu erstellen. |
Definieren Sie Inhalt, Aussehen und Ausgabe Ihrer QR-Codes mithilfe der verfügbaren Parameter.
| Parameter | Typ | Standard | Beschreibung |
|---|---|---|---|
| qrOptions | |||
| size | integer | 300 | Größe des zurückgegebenen QR-Codes in Pixeln |
| errorCorrectionLevel | string | "Q" | Fehlerkorrektur: L, M, Q, H |
| pattern | string | "square" | Punktmuster: quadratisch, gepunktet, abgerundet, elegant, rautenförmig, funkelnd… |
| patternColor | string | "#000000" | Die Farbe der Punkte QR-Code |
| patternBackground | string | "#ffffff" | Hintergrundfarbe des QR-Codes |
| cornetsOuter | string | "square" | Stil der äußeren Ecken: quadratisch, gepunktet, elegant, zahnradförmig, extra abgerundet… |
| cornetsOuterColor | string | "#000000" | Farbe der äußeren Ecken |
| cornetsInterior | string | "square" | Stil der Innenecke: Quadrat, Punkt, klassisch, Raute, Stern… |
| cornetsInteriorColor | string | "#000000" | Farbe der inneren Ecken |
| logotype | string | null | Logo in der Mitte: vordefinierte Aufzählung, URL oder Base64-Bild |
| logotypeSize | number | 0.3 | Logo-Größenkoeffizient 0–1 (empfohlener Maximalwert: 0,5) |
| logotypeMargin | number | 0 | Logo-Abstand in Pixeln |
| logotypeHideBackground | boolean | true | Vom Logo verdeckte Punkte ausblenden |
| gradientPattern | object | null | Farbverlauf für Punkte: {Typ, Drehung, Farben[]} |
| gradientCornetsOuter | object | null | Farbverlauf für äußere Ecken |
| gradientCornetsInterior | object | null | Farbverlauf für innere Ecken |
| gradientBackground | object | null | Farbverlauf für den Hintergrund |
| qrFrame | |||
| name | string | "noFrame" | Rahmendesign (über 200 Optionen oder ohne Rahmen) |
| color | string | "#000000" | Rahmenfarbe |
| backgroundColor | string | "#ffffff" | Rahmenhintergrundfarbe |
| text | string | "" | Rahmenbeschriftungstext (max. 20 Zeichen) |
| textSize | integer | null | Schriftgröße in Pixel (1–50) |
| textColor | string | "#9C3AAF" | Rahmentextfarbe |
| textFont | string | "Roboto" | Schriftart: Arial, Roboto, Georgia, Verdana… |
Entdecken Sie Beispiel-API-Anfragen und die von ihnen generierten QR-Codes.
curl -X POST https://me-qr.com/api/v2/qr/link/create \
-H "Content-Type: application/json" \
-H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
-d '{
"qrFieldsData": {
"link": "https://example.com"
},
"format": "png"
}'
curl -X POST https://me-qr.com/api/v2/qr/link/create \
-H "Content-Type: application/json" \
-H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
-d '{
"qrFieldsData": {
"link": "https://example.com"
},
"format": "png",
"qrOptions": {
"patternColor": "#FFFFFF",
"patternBackground": "#173782",
"cornetsOuterColor": "#0281fb",
"cornetsInteriorColor": "#0281fb"
}
}'
curl -X POST https://me-qr.com/api/v2/qr/link/create \
-H "Content-Type: application/json" \
-H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
-d '{
"qrFieldsData": {
"link": "https://example.com"
},
"format": "png",
"qrOptions": {
"logotype": "youTubeLogotype",
"logotypeSize": 0.3,
"logotypeMargin": 5,
"logotypeHideBackground": true
},
"qrFrame": {
"name": "frame1",
"color": "ff0000",
"backgroundColor": "#ffffff",
"text": "Scan me!",
"textColor": "#FFFFFF"
}
}'
API QR Code ist ein leistungsstarkes Tool zur Stapelverarbeitung von QR-Codes und deren nahtloser Integration in Geschäftsprozesse. Es ermöglicht die Automatisierung mithilfe der QR-Technologie. Diese API trägt maßgeblich zur Optimierung von Abläufen und Effizienzsteigerungen bei und bietet eine robuste Lösung für Unternehmen, die QR-Codes in ihre Arbeitsabläufe integrieren möchten.
Ein bemerkenswertes Beispiel für die Funktionalität der API liefert der Endpunkt /api/qr/create/, mit dem Sie QR-Codes programmatisch generieren können:
Ermöglicht die Generierung eines QR-Codes mithilfe eines der auf me-qr verfügbaren Typen. Jede Anfrage generiert einen neuen QR-Code.
Keine Parameter
{
"token": "string",
"qrType": 1,
"qrFieldsData": {
"link": "https://example.com"
},
"entryId": null,
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
| Code | Beschreibung | Links |
|---|---|---|
| default | — | Keine Links |
Die Me-QR Generator API bietet umfassende Kontrolle über die QR-Code-Generierung und stellt Ihnen eine Reihe von Funktionen zur Verfügung, mit denen Sie QR-Codes an Ihre spezifischen Bedürfnisse anpassen können:
Ruft eine Liste der unterstützten Länder für die benutzerdefinierte QR-Code-API ab.
Rufe die Liste der verfügbaren Länder ab.
| Name | Beschreibung |
|---|---|
|
country
string
(query)
|
Suche nach Ländernamen. |
| Code | Beschreibung | Links |
|---|---|---|
| 200 | Erfolgreiche Antwort application/json
[
{
"id": 0,
"name": "string"
}
]
|
Keine Links |
Dieser Endpunkt ermöglicht es Ihnen, eine Liste der verfügbaren Länder abzurufen und so die Lokalisierung und Anpassung auf Basis geografischer Präferenzen zu erleichtern.
Rufen Sie eine Liste der unterstützten Städte auf, um die QR-Code-Details genau anzupassen.
Rufe die Liste der verfügbaren Städte ab.
| Name | Beschreibung |
|---|---|
|
country
string
(query)
|
Suche nach Ländernamen. |
| Code | Beschreibung | Links |
|---|---|---|
| 200 | Erfolgreiche Antwort application/json
[
{
"id": 0,
"name": "string"
}
]
|
Keine Links |
Mit dieser Funktion können Sie bestimmte Städte auswählen und so die Relevanz von QR-Codes für standortspezifische Kampagnen oder die Verbreitung von Informationen erhöhen.
Ermitteln Sie die unterstützten Zeitzonen, um zeitkritische Informationen in QR-Codes einzubinden.
Rufe die Liste der verfügbaren Zeitzonen ab.
| Name | Beschreibung |
|---|---|
|
timezone
string
(query)
|
Suche nach Zeitzonennamen. |
| Code | Beschreibung | Links |
|---|---|---|
| 200 | Erfolgreiche Antwort application/json
[
{
"id": 0,
"name": "string"
}
]
|
Keine Links |
Diese Funktionalität ermöglicht es Ihnen, QR-Code-Inhalte mit zeitbezogenen Daten abzugleichen und so Relevanz und Aktualität zu gewährleisten.
Hier finden Sie eine Liste der unterstützten Sprachen für QR-Code-Text und Inhaltsanpassung.
Rufe die Liste der verfügbaren Sprachen ab.
| Name | Beschreibung |
|---|---|
|
language
string
(query)
|
Suche nach Sprachnamen. |
| Code | Beschreibung | Links |
|---|---|---|
| 200 | Erfolgreiche Antwort application/json
[
{
"id": 0,
"name": "string"
}
]
|
Keine Links |
Sie können diese Funktion nutzen, um unterschiedlichen Sprachpräferenzen gerecht zu werden und QR-Codes in mehrsprachigen Kontexten zugänglicher und benutzerfreundlicher zu gestalten.
Die durch diese Funktionen gebotene Flexibilität ermöglicht es Ihnen, eine dynamische QR-Code-API zu erstellen, die auf bestimmte Regionen, Städte, Zeitzonen und Sprachen zugeschnitten ist, und dadurch die Effektivität Ihrer QR-basierten Kommunikations- und Interaktionsstrategien zu steigern.
Unsere QR-Code-Generator-API bietet eine Vielzahl von QR-Code-Typen für unterschiedliche Bedürfnisse und Funktionen. Im Folgenden werden einige dieser Typen genauer betrachtet.
Die kostenlose QR-Code-API erweist sich im Zahlungsverkehr aufgrund ihrer nahtlosen und effizienten Funktionsweise als wertvoll. Sie vereinfacht Transaktionen, erhöht die Sicherheit und beschleunigt die monatliche QR-Code-Zahlung. Hier ist ein einfaches Codebeispiel, das die Verwendung demonstriert:
Eine kostenlose QR-Code-API erweist sich im Zahlungsverkehr als wertvoll, da sie Unternehmen und Privatpersonen die Abwicklung von Transaktionen vereinfacht. Durch Einbetten einer Zahlungs-URL in einen QR-Code können Kunden den Code schnell mit ihren Smartphones scannen und Transaktionen reibungslos abschließen.
{
"qrFieldsData": {
"link"*: "https://example.com/pay"
}
}
| Feld | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| link | string($hostname) | required | URL der Zahlungsseite |
Generieren Sie mit unserer QR-Code-API Ihre Zahlungsprozesse und verwandeln Sie Transaktionen in nahtlose und effiziente Erlebnisse.
Generieren Sie mit unserer QR-Code-API Ihre Zahlungsprozesse und revolutionieren Sie diese. Integrieren Sie sichere und effiziente Transaktionen nahtlos in Ihre Anwendungen.
Ein beispielhaftes Beispiel für eine QR-Code-Zahlungs-API ist der PayPal-QR-Code. PayPal, bekannt als führender Anbieter von Online-Zahlungen, ermöglicht durch seine API-Integration sichere und unkomplizierte Transaktionen. Hier eine einfache Veranschaulichung der Implementierung:
Die PayPal QR-Code-API ermöglicht die nahtlose Integration von PayPal-Zahlungslinks in QR-Codes. Nutzer können den QR-Code scannen und werden direkt zur PayPal-Zahlungsseite weitergeleitet. Dadurch werden Transaktionen für Unternehmen und Kunden schnell und bequem.
{
"qrFieldsData": {
"link"*: "https://paypal.me/username"
}
}
| Feld | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| link | string($hostname) | required | PayPal.me oder Zahlungs-URL |
Nutzen Sie die PayPal QR Code API, um Ihren Zahlungsprozess zu vereinfachen und zu beschleunigen und Ihren Nutzern ein modernes Checkout-Erlebnis zu bieten.
Verbessern Sie Ihr Online-Zahlungserlebnis mit der PayPal QR-Code-API von Me-QR. Integrieren Sie sichere und effiziente PayPal-Transaktionen mühelos in Ihre Anwendungen.
Die QR-Code-Generator-API mit Logofunktion zeichnet sich durch ihre große Beliebtheit aus. Mit dieser Funktion können Nutzer ihr Logo in das QR-Code-Design einbetten, indem sie einen QR-Code mit Logo bereitstellen. Sie ist eine bevorzugte Wahl für Markenwiedererkennung und individuelle Anpassung.
Mit der Logo QR Code API erstellen Sie QR-Codes, die auf beliebige URLs verlinken – ideal für Markenseiten, Portfolios oder Landingpages. Binden Sie Ihre Ziel-URL ein und bieten Sie Ihren Besuchern ein professionelles, scannbares Erlebnis.
{
"qrFieldsData": {
"link"*: "https://example.com"
}
}
| Feld | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| link | string($hostname) | required | Ziel-URL |
Mit der Logo QR Code API können Sie mühelos jedes beliebige Ziel verlinken und so Markenbekanntheit mit dem Komfort der QR-Technologie verbinden.
Präsentieren Sie Ihre Marke bei jedem Scan mit einer kostenlosen QR-Code-Generator-API. Steigern Sie Ihre Markenbekanntheit und personalisieren Sie QR-Codes mühelos mit eingebetteten Logos.
Der WhatsApp-API-QR-Code nimmt unter den QR-Code-APIs für Messenger eine herausragende Stellung ein. Die Nutzung dieser API ermöglicht eine nahtlose Interaktion durch schnellen Zugriff auf WhatsApp und macht sie damit zu einem führenden Anbieter von Messenger-basierten QR-Code-Funktionen. Hier ein Beispiel:
Mit der WhatsApp QR-Code-API können Sie QR-Codes generieren, die eine WhatsApp-Konversation mit einer vorausgefüllten Nachricht öffnen. Geben Sie einfach eine Telefonnummer und optional eine Nachricht an – ideal für Kundensupport, Marketingkampagnen und die sofortige Interaktion.
{
"qrFieldsData": {
"phone"*: "+1234567890",
"message"*: "Hello!"
}
}
| Feld | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| phone | string | required | Telefonnummer des Empfängers im internationalen Format |
| message | string | required | Vorausgefüllter Nachrichtentext |
Integrieren Sie die WhatsApp QR Code API, um mit einem einzigen Scan direkte Konversationen zu fördern und die Interaktion zu steigern.
Verbinden Sie sich nahtlos mit Ihrer Zielgruppe über den WhatsApp-QR-Code. Ermöglichen Sie den schnellen Zugriff auf Konversationen mit nur einem Scan und verbessern Sie so Ihr Messaging-Erlebnis.
Die kostenlose QR-Code-API bietet eine umfassende Auswahl an QR-Code-API-Generatoren für unterschiedlichste Anforderungen. Entdecken Sie die am häufigsten unterstützten QR-Code-API-Typen und Codebeispiele für jeden Typ:
Erstellen Sie QR-Codes, die Benutzer zu einer beliebigen URL weiterleiten.
Erstellen Sie einen QR-Code, der beim Scannen zu einer beliebigen URL weiterleitet.
{
"qrFieldsData": {
"link": "https://example.com"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://example.com"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://example.com"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Verbinde dich mit Instagram-Profilen über QR-Codes.
Generieren Sie einen QR-Code, der direkt zu einem Instagram-Profil oder -Beitrag verlinkt.
{
"qrFieldsData": {
"link": "https://www.instagram.com/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://www.instagram.com/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://www.instagram.com/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Verlinkung zu Facebook-Profilen oder -Seiten über die QR Code Generator REST-API.
Generieren Sie einen QR-Code, der zu einer Facebook-Seite, -Gruppe oder einem Profil verlinkt.
{
"qrFieldsData": {
"link": "https://www.facebook.com/pagename"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://www.facebook.com/pagename"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://www.facebook.com/pagename"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Greifen Sie über QR-Codes auf Twitter-Profile oder Tweets zu.
Erstellen Sie einen QR-Code, der Benutzer zu einem Twitter/X-Profil oder Tweet weiterleitet.
{
"qrFieldsData": {
"link": "https://twitter.com/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://twitter.com/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://twitter.com/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Entdecke TikTok-Profile mithilfe von QR-Codes.
Generieren Sie einen QR-Code, der zu einem TikTok-Profil oder -Video verlinkt.
{
"qrFieldsData": {
"link": "https://www.tiktok.com/@username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://www.tiktok.com/@username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://www.tiktok.com/@username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Verbinde dich mit Profilen über Snapchat QR.
Generieren Sie einen QR-Code, der direkt zu einem Snapchat-Profil verlinkt.
{
"qrFieldsData": {
"link": "https://www.snapchat.com/add/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://www.snapchat.com/add/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://www.snapchat.com/add/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Interagiere mit Telegram-Kanälen oder -Gruppen mithilfe von QR-Codes.
Erstelle einen QR-Code, der zu einem Telegram-Kanal, Bot oder Kontakt verlinkt.
{
"qrFieldsData": {
"link": "https://t.me/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://t.me/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://t.me/username"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Greifen Sie über QR-Codes auf bestimmte Spotify-Songs, -Alben oder -Künstler zu.
Generieren Sie einen QR-Code, der eine Spotify-Titel-, Album- oder Künstlerseite öffnet.
{
"qrFieldsData": {
"link": "https://open.spotify.com/track/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://open.spotify.com/track/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://open.spotify.com/track/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
YouTube-Kanäle oder Videos mithilfe von QR-Codes ansehen.
Erstelle einen QR-Code, der zu einem YouTube-Kanal oder -Video verlinkt.
{
"qrFieldsData": {
"link": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Genießen Sie die Videowiedergabe auf Mobilgeräten mithilfe von in die Videos eingebetteten QR-Codes.
Generieren Sie einen QR-Code, der zu einer beliebigen Online-Videoressource verlinkt.
{
"qrFieldsData": {
"link": "https://example.com/video.mp4"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://example.com/video.mp4"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://example.com/video.mp4"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Durchsuchen Sie bestimmte Etsy-Produkte mithilfe von QR-Codes.
Erstelle einen QR-Code, der zu einem Etsy-Shop oder einer Produktliste verlinkt.
{
"qrFieldsData": {
"link": "https://www.etsy.com/shop/storename"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://www.etsy.com/shop/storename"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://www.etsy.com/shop/storename"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Generieren Sie QR-Codes mit einzigartigen Formen und Designs zur Stärkung Ihrer Markenpräsenz.
Generieren Sie einen QR-Code mit einem individuell gestalteten Design, der zu einer beliebigen Webressource verlinkt.
{
"qrFieldsData": {
"link": "https://example.com"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://example.com"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://example.com"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Bestimmte Google Sheets-Tabellenkalkulationen können direkt über QR-Codes geöffnet werden.
Erstelle einen QR-Code, der auf ein freigegebenes Google Sheets-Dokument verlinkt.
{
"qrFieldsData": {
"link": "https://docs.google.com/spreadsheets/d/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://docs.google.com/spreadsheets/d/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://docs.google.com/spreadsheets/d/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Greifen Sie mithilfe von QR-Codes auf bestimmte Google Docs-Dokumente zu.
Generieren Sie einen QR-Code, der ein freigegebenes Google Docs-Dokument öffnet.
{
"qrFieldsData": {
"link": "https://docs.google.com/document/d/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://docs.google.com/document/d/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://docs.google.com/document/d/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Nehmen Sie an Umfragen oder Quizzen teil, indem Sie QR-Codes verwenden, die zu bestimmten Google-Formularen führen.
Erstellen Sie einen QR-Code, der zu einer Google Forms-Umfrage oder einem Quiz verlinkt.
{
"qrFieldsData": {
"link": "https://forms.google.com/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://forms.google.com/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://forms.google.com/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Teilen Sie Google My Business-Rezensionen mithilfe von QR-Codes.
Generieren Sie einen QR-Code, der Kunden dazu anleitet, eine Google-Bewertung für Ihr Unternehmen abzugeben.
{
"qrFieldsData": {
"link": "https://g.page/your-business/review"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://g.page/your-business/review"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://g.page/your-business/review"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Verlinken Sie Microsoft Office 365-Dokumente mithilfe von QR-Codes.
Erstellen Sie einen QR-Code, der zu einem Microsoft Office 365-Dokument oder einer SharePoint-Ressource verlinkt.
{
"qrFieldsData": {
"link": "https://office365.com/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"link": "https://office365.com/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"link": "https://office365.com/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Beim Scannen von QR-Codes werden automatisch E-Mails versendet, sodass Nutzer Nachrichten verfassen können, ohne die Adresse eintippen zu müssen.
Erstellen Sie einen QR-Code, der ein E-Mail-Programm mit vorausgefülltem Empfänger, Betreff und Nachrichtentext öffnet.
{
"qrFieldsData": {
"emailTo": "user@example.com",
"subject": "Hello",
"body": "Your message here"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"emailTo": "user@example.com",
"subject": "Hello",
"body": "Your message here"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"emailTo": "user@example.com",
"subject": "Hello",
"body": "Your message here"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Wählen Sie Telefonnummern direkt über QR-Codes, die zu den Telefonnummern führen.
Generieren Sie einen QR-Code, der beim Scannen automatisch eine Telefonnummer wählt.
{
"qrFieldsData": {
"phoneTo": "+1234567890"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"phoneTo": "+1234567890"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"phoneTo": "+1234567890"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Generieren Sie QR-Codes für WLAN-Netzwerke, einschließlich SSID, Passwort und Sicherheitstyp.
Erstellen Sie einen QR-Code, der Benutzer automatisch mit einem WLAN-Netzwerk verbindet.
{
"qrFieldsData": {
"ssid": "NetworkName",
"encryption": "wpa/wpa2",
"password": "secret123"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"ssid": "NetworkName",
"encryption": "wpa/wpa2",
"password": "secret123"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"ssid": "NetworkName",
"encryption": "wpa/wpa2",
"password": "secret123"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Teilen Sie Nachrichten oder Informationen mithilfe von QR-Codes, die Klartext enthalten.
Generieren Sie einen QR-Code, der beim Scannen Klartext oder HTML-Inhalte anzeigt.
{
"qrFieldsData": {
"text": "Your custom text here"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"text": "Your custom text here"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"text": "Your custom text here"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Über eine API für QR-Codes können Sie auf bestimmte Orte wie Adressen, Sehenswürdigkeiten oder Points of Interest zugreifen.
Erstelle einen QR-Code, der einen bestimmten Ort in Google Maps öffnet.
{
"qrFieldsData": {
"latitude": "48.8566",
"longitude": "2.3522"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"latitude": "48.8566",
"longitude": "2.3522"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"latitude": "48.8566",
"longitude": "2.3522"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Installieren Sie Apps aus dem App Store direkt durch Scannen der jeweiligen QR-Codes.
Generieren Sie einen intelligenten QR-Code, der je nach Gerät des Nutzers zum App Store oder Google Play weiterleitet.
{
"qrFieldsData": {
"iosLink": "https://apps.apple.com/app/...",
"androidLink": "https://play.google.com/store/apps/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"iosLink": "https://apps.apple.com/app/...",
"androidLink": "https://play.google.com/store/apps/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"iosLink": "https://apps.apple.com/app/...",
"androidLink": "https://play.google.com/store/apps/..."
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Teilen Sie Kontaktinformationen nahtlos mithilfe von QR-Codes im VCard-Format.
Erstellen Sie einen digitalen Visitenkarten-QR-Code. Nutzer können Ihre Kontaktdaten direkt auf ihrem Smartphone speichern.
{
"qrFieldsData": {
"name": "John",
"lastName": "Doe",
"organization": "Acme Corp",
"position": "CEO",
"phones": [{ "phone": "+1234567890", "type": "mobile" }],
"emails": [{ "email": "john@example.com" }],
"websites": [{ "url": "https://example.com" }]
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"name": "John",
"lastName": "Doe",
"organization": "Acme Corp",
"position": "CEO",
"phones": [{ "phone": "+1234567890", "type": "mobile" }],
"emails": [{ "email": "john@example.com" }],
"websites": [{ "url": "https://example.com" }]
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"name": "John",
"lastName": "Doe",
"organization": "Acme Corp",
"position": "CEO",
"phones": [{ "phone": "+1234567890", "type": "mobile" }],
"emails": [{ "email": "john@example.com" }],
"websites": [{ "url": "https://example.com" }]
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Bilder können direkt auf Mobilgeräten mithilfe von QR-Codes, in die die Bilder eingebettet sind, angezeigt werden.
Generieren Sie einen QR-Code, der eine Bildergalerie öffnet. Laden Sie 1–20 Bilder als Base64-kodierte Dateien hoch oder geben Sie URLs an.
{
"qrFieldsData": {
"images": [
{
"file": "https://example.com/photo.jpg",
"fileName": "photo.jpg"
}
]
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"images": [
{
"file": "https://example.com/photo.jpg",
"fileName": "photo.jpg"
}
]
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"images": [
{
"file": "https://example.com/photo.jpg",
"fileName": "photo.jpg"
}
]
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Mit einem einzigen Scan können Sie über QR-Codes, die zu verschiedenen Websites verlinken, auf mehrere URLs zugreifen.
Erstellen Sie einen QR-Code, der eine gebrandete Landingpage mit mehreren benutzerdefinierten Links und Social-Media-Buttons öffnet.
{
"qrFieldsData": {
"title": "My Links",
"description": "All my important links",
"backgroundColor": "#2F6BFD",
"links": [{ "title": "My Website", "url": "https://example.com" }],
"socials": []
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"title": "My Links",
"description": "All my important links",
"backgroundColor": "#2F6BFD",
"links": [{ "title": "My Website", "url": "https://example.com" }],
"socials": []
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"title": "My Links",
"description": "All my important links",
"backgroundColor": "#2F6BFD",
"links": [{ "title": "My Website", "url": "https://example.com" }],
"socials": []
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Teilen Sie Dateien in beliebigen Formaten, indem Sie einen Download-Link in einen QR-Code einbetten, um sofortigen mobilen Zugriff zu ermöglichen.
Generieren Sie einen QR-Code, der zu einer herunterladbaren Datei verlinkt. Geben Sie ihn als Base64-kodierte Datei oder als direkte URL an.
{
"qrFieldsData": {
"file": "https://example.com/document.pdf",
"fileName": "document.pdf"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"file": "https://example.com/document.pdf",
"fileName": "document.pdf"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"file": "https://example.com/document.pdf",
"fileName": "document.pdf"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Betten Sie PDF-Dokumente in QR-Codes ein, um den Zugriff auf Mobilgeräten zu vereinfachen.
Erstellen Sie einen QR-Code, der beim Scannen ein PDF-Dokument im Browser öffnet.
{
"qrFieldsData": {
"file": "https://example.com/document.pdf",
"fileName": "document.pdf"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"file": "https://example.com/document.pdf",
"fileName": "document.pdf"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"file": "https://example.com/document.pdf",
"fileName": "document.pdf"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Genießen Sie die Audiowiedergabe auf Mobilgeräten mithilfe von QR-Codes, in die Audiodateien eingebettet sind.
Generieren Sie einen QR-Code, der eine Audiodatei abspielt – perfekt für Musik, Podcasts oder Sprachnachrichten.
{
"qrFieldsData": {
"file": "https://example.com/audio.mp3",
"fileName": "audio.mp3"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"file": "https://example.com/audio.mp3",
"fileName": "audio.mp3"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"file": "https://example.com/audio.mp3",
"fileName": "audio.mp3"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Präsentieren Sie PowerPoint-Präsentationen mühelos mit QR-Code-Einbettung.
Erstellen Sie einen QR-Code, der beim Scannen eine PowerPoint-Präsentation öffnet oder herunterlädt.
{
"qrFieldsData": {
"file": "https://example.com/presentation.pptx",
"fileName": "presentation.pptx"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"file": "https://example.com/presentation.pptx",
"fileName": "presentation.pptx"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"file": "https://example.com/presentation.pptx",
"fileName": "presentation.pptx"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Teilen und überprüfen Sie PCR-Testergebnisse bequem mit dem Covid-Test-QR-Code.
Generieren Sie einen QR-Code für ein Gesundheits- oder Konformitätszertifikat mit Passwortschutz und Ablaufdatum.
{
"qrFieldsData": {
"file": "https://example.com/certificate.pdf",
"fileName": "certificate.pdf",
"expireDate": "2025-12-31",
"password": "secret"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Ändern von Daten- und Stylingparametern des QR-Codes.
entryUIDpath ID oder eindeutiger Zugangsschlüssel (QR-Code)
{
"qrFieldsData": {
"file": "https://example.com/certificate.pdf",
"fileName": "certificate.pdf",
"expireDate": "2025-12-31",
"password": "secret"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.
entryUID path ID oder eindeutiger Zugangsschlüssel (QR-Code)
format query Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.
{
"qrFieldsData": {
"file": "https://example.com/certificate.pdf",
"fileName": "certificate.pdf",
"expireDate": "2025-12-31",
"password": "secret"
},
"title": "Qr Code",
"format": "png",
"designType": "base",
"qrFolderOptions": {
"folderName": null,
"subfolderName": null
},
"qrOptions": {
"size": 300,
"errorCorrectionLevel": "Q",
"pattern": "square",
"patternColor": "#000000",
"patternBackground": "#ffffff",
"cornetsOuter": "square",
"cornetsOuterColor": "#000000",
"cornetsInterior": "square",
"cornetsInteriorColor": "#000000",
"logotype": null,
"logotypeSize": 0.3,
"logotypeMargin": 0,
"logotypeHideBackground": true,
"gradientPattern": null,
"gradientCornetsOuter": null,
"gradientCornetsInterior": null,
"gradientBackground": null
},
"qrFrame": {
"name": "noFrame",
"color": "#000000",
"backgroundColor": "#ffffff",
"text": "",
"textSize": null,
"textColor": "#9C3AAF",
"textFont": "Roboto"
}
}
Die Online-QR-Code-Generator-API bietet eine Vielzahl von QR-API-Typen für unterschiedlichste Anforderungen. Sie ermöglicht unter anderem die Weiterleitung von Nutzern zu Websites, das Teilen von Kontaktinformationen, den Zugriff auf bestimmte Standorte und die Interaktion mit Social-Media-Profilen.
Mit unserem API-QR-Code-Generator erreichen Sie eine völlig neue Dimension der QR-Code-Erstellung. Dieses bahnbrechende Tool vereinfacht und optimiert die QR-Code-Generierung. Diese exklusive Funktion, die nur in unserem Premium-Tarif verfügbar ist, ermöglicht Entwicklern und Unternehmen die nahtlose Integration der QR-Code-Erstellung in ihre Anwendungen und Arbeitsabläufe und steigert so Effizienz und Produktivität.
Die ME-QR API lässt sich nahtlos in Ihre bestehenden Systeme integrieren und ermöglicht die automatisierte QR-Code-Generierung sowie das einfache Einbetten von QR-Codes in Ihre Anwendungen, Websites und Workflows. Dadurch entfällt die manuelle QR-Code-Erstellung, was Ihnen wertvolle Zeit und Mühe spart und gleichzeitig ein einheitliches Branding und konsistente Funktionalität auf allen Plattformen gewährleistet.
Dank der plattformübergreifenden Kompatibilität der ME-QR API, die Android, iOS und Windows umfasst, können Sie QR-Codes von überall aus erstellen und nahtlos in Ihre digitalen Assets integrieren.
Nutzen Sie die Leistungsfähigkeit der QR-Code-Web-API und optimieren Sie Ihre QR-Code-Erstellung. Erleben Sie die unübertroffene Effizienz und Produktivität unseres Premium-Tarifs. Abonnieren Sie noch heute und automatisieren Sie Ihre QR-Code-Generierung!
Zunächst müssen Sie ein Konto bei Me-QR erstellen. Nach der Registrierung rufen Sie Ihr Konto-Dashboard auf, um Ihren individuellen API-Schlüssel zu generieren. Verwenden Sie diesen Schlüssel im Authorization-Header Ihrer HTTP-Anfragen, um Ihre Aufrufe zu authentifizieren.
Unsere API ist eine Premium-Funktion, die für den professionellen Einsatz und hohe Leistung entwickelt wurde. Um auf die API-Endpunkte zuzugreifen und sie in Ihren Workflow zu integrieren, benötigen Sie ein Abonnement für einen unserer Premium-Tarife.
Ja, um die Stabilität für alle Nutzer zu gewährleisten, setzen wir eine Ratenbegrenzung ein. Das genaue Limit hängt von Ihrem Premium-Abonnement ab. Standard-Abonnements erlauben in der Regel bis zu 50 Anfragen pro Minute, während Enterprise-Abonnements höhere Limits bieten.
Absolut. Die API ist speziell für die Automatisierung konzipiert. Sie können programmatisch mehrere Anfragen senden, um innerhalb von Minuten Tausende von eindeutigen QR-Codes für Tickets, Lagerbestände oder personalisierte Marketingkampagnen zu generieren.
Ja. Jeder über die API generierte dynamische QR-Code enthält automatisch Analysedaten. Sie können Scandaten (Standort, Gerätetyp, Zeit) entweder über unser Web-Dashboard oder über spezifische Analyse-API-Endpunkte abrufen.
Wenn Ihr Abonnement abläuft, wird Ihr API-Schlüssel deaktiviert und Sie können keine neuen Codes mehr generieren. Bereits erstellte dynamische Codes bleiben jedoch aktiv, solange sie die Bedingungen Ihres bestehenden Abonnements erfüllen.