ME-QR / Code QR API
Vous souhaitez créer des codes QR à grande échelle ? Intégrez notre API de génération de codes QR à votre entreprise et automatisez vos processus. Tous les types de codes QR sont disponibles avec l’API Me-QR.
Générez votre premier code QR en quelques secondes grâce à une simple requête API.
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);
Utilisez une clé API pour authentifier vos requêtes.
Vous le trouverez dans votre tableau de bord :
Ajoutez votre clé API à l'en-tête de la requête :
Authorization: Bearer YOUR_API_KEY
Tout ce que vous devez savoir sur l'utilisation, les limites et l'accès à l'API.
Comprend jusqu'à 10 000 codes QR par mois.
$0.005 / demande
Jusqu'à 100 000 requêtes
$0.0025 / demande
100k+ requests
gratuit
3 clés API · Valables 3 jours
Premium
Clés API illimitées · Aucune date d'expiration
Limites de l'API : ~1 requête/s · 50 requêtes/min (identiques pour tous les forfaits)
Contactez le support pour activer des fonctionnalités supplémentaires.
Définissez le contenu, l'apparence et le format de vos codes QR à l'aide des paramètres disponibles.
| Paramètre | Taper | Défaut | Description |
|---|---|---|---|
| tokenrequis | string | — | jeton d'accès aux fonctionnalités de l'API |
| qrType | integer | 1 | Type de QR code : 1 = Lien, 4 = PDF, 5 = E-mail, 7 = VCard… |
| qrFieldsData | object | [] | QR code content depending on the type (e.g. {"link": "https://…"}) |
| title | string | "Qr Code" | Titre du code QR affiché dans le tableau de bord |
| format | string | "png" | Format de sortie : png, svg, jpg, jpeg, json |
| designType | string | "base" | Type de conception QR : base ou art |
| qrFolderOptions | object | null | Folder placement: {"folderName": "…", "subfolderName": "…"} |
| entryId | integer | null | Identifiant du QR code existant à mettre à jour au lieu d'en créer un nouveau |
Définissez le contenu, l'apparence et le format de vos codes QR à l'aide des paramètres disponibles.
| Paramètre | Taper | Défaut | Description |
|---|---|---|---|
| qrOptions | |||
| size | integer | 300 | Taille de l'image QR renvoyée en px |
| errorCorrectionLevel | string | "Q" | Correction d'erreurs : L, M, Q, H |
| pattern | string | "square" | Style de points : carré, points, arrondi, élégant, losange, étincelle… |
| patternColor | string | "#000000" | La couleur des points QR Code |
| patternBackground | string | "#ffffff" | Couleur de fond du code QR |
| cornetsOuter | string | "square" | Style des angles extérieurs : carré, point, élégant, engrenage, extra-arrondi… |
| cornetsOuterColor | string | "#000000" | Couleur des coins extérieurs |
| cornetsInterior | string | "square" | Style d'angle intérieur : carré, point, classique, losange, étoile… |
| cornetsInteriorColor | string | "#000000" | Couleur des coins intérieurs |
| logotype | string | null | Logo central : énumération prédéfinie, URL ou image en base64 |
| logotypeSize | number | 0.3 | Coefficient de taille du logo : 0–1 (maximum recommandé : 0,5) |
| logotypeMargin | number | 0 | Marge du logo en px |
| logotypeHideBackground | boolean | true | Masquer les points recouverts par le logo |
| gradientPattern | object | null | Dégradé pour les points : {type, rotation, couleurs[]} |
| gradientCornetsOuter | object | null | Dégradé pour les coins extérieurs |
| gradientCornetsInterior | object | null | Dégradé pour les angles intérieurs |
| gradientBackground | object | null | Dégradé pour l'arrière-plan |
| qrFrame | |||
| name | string | "noFrame" | Conception de cadre (plus de 200 options ou sans cadre) |
| color | string | "#000000" | Couleur du cadre |
| backgroundColor | string | "#ffffff" | couleur de fond du cadre |
| text | string | "" | Texte de l'étiquette du cadre (20 caractères maximum) |
| textSize | integer | null | Taille de la police en px (1–50) |
| textColor | string | "#9C3AAF" | couleur du texte du cadre |
| textFont | string | "Roboto" | Police : Arial, Roboto, Georgia, Verdana… |
Explorez des exemples de requêtes API et les codes QR qu'elles génèrent.
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"
}
}'
L'API QR Code est un outil puissant conçu pour la création de codes QR par lots et leur intégration fluide aux processus métier, permettant ainsi l'automatisation grâce à la technologie QR. Cette API s'avère essentielle pour rationaliser les opérations, améliorer l'efficacité et fournir une solution robuste aux entreprises souhaitant intégrer les codes QR à leurs flux de travail.
Un exemple notable de la fonctionnalité de l'API est illustré par le point de terminaison /api/qr/create/, qui vous permet de générer des codes QR par programmation :
Permet de générer un code QR à l'aide de l'un des types disponibles sur me-qr. Chaque requête générera un nouveau code QR.
Aucun paramètre
{
"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 | Description | Links |
|---|---|---|
| default | — | Aucun lien |
L'API Me-QR Generator offre un contrôle complet sur la génération de codes QR, vous fournissant une gamme de fonctionnalités pour adapter les codes QR à vos besoins spécifiques :
Récupérer la liste des pays pris en charge par l'API de code QR personnalisé
Récupérer la liste des pays disponibles.
| Nom | Description |
|---|---|
|
country
string
(query)
|
Recherche par nom de pays. |
| Code | Description | Links |
|---|---|---|
| 200 | Réponse réussie application/json
[
{
"id": 0,
"name": "string"
}
]
|
Aucun lien |
Ce point de terminaison vous permet de récupérer une liste des pays disponibles, facilitant ainsi la localisation et la personnalisation en fonction des préférences géographiques.
Accédez à la liste des villes prises en charge pour affiner les détails du code QR.
Récupérer la liste des villes disponibles.
| Nom | Description |
|---|---|
|
country
string
(query)
|
Recherche par nom de pays. |
| Code | Description | Links |
|---|---|---|
| 200 | Réponse réussie application/json
[
{
"id": 0,
"name": "string"
}
]
|
Aucun lien |
Vous pouvez utiliser cette fonctionnalité pour sélectionner des villes spécifiques, ce qui renforce la pertinence des codes QR pour les campagnes géolocalisées ou la diffusion d'informations.
Obtenez la liste des fuseaux horaires pris en charge pour intégrer des informations temporelles dans les codes QR.
Récupérer la liste des fuseaux horaires disponibles.
| Nom | Description |
|---|---|
|
timezone
string
(query)
|
Recherche par nom de fuseau horaire. |
| Code | Description | Links |
|---|---|---|
| 200 | Réponse réussie application/json
[
{
"id": 0,
"name": "string"
}
]
|
Aucun lien |
Cette fonctionnalité vous permet d'aligner le contenu du code QR avec des données temporelles spécifiques, garantissant ainsi sa pertinence et son actualité.
Accédez à la liste des langues prises en charge pour la personnalisation du texte et du contenu des codes QR.
Récupérer la liste des langues disponibles.
| Nom | Description |
|---|---|
|
language
string
(query)
|
Recherche par nom de langue. |
| Code | Description | Links |
|---|---|---|
| 200 | Réponse réussie application/json
[
{
"id": 0,
"name": "string"
}
]
|
Aucun lien |
Vous pouvez utiliser cette fonctionnalité pour répondre aux différentes préférences linguistiques, rendant ainsi les codes QR plus accessibles et conviviaux dans des contextes multilingues.
La flexibilité offerte par ces fonctionnalités vous permet de créer une API de code QR dynamique adaptée à des régions, des villes, des fuseaux horaires et des langues spécifiques, améliorant ainsi l'efficacité de vos stratégies de communication et d'interaction basées sur les codes QR.
Notre API de génération de codes QR propose une grande variété de types, répondant à divers besoins et fonctionnalités. Examinons-en quelques-uns plus en détail.
L'API gratuite de code QR s'avère précieuse dans le domaine des paiements grâce à sa simplicité et son efficacité. Elle simplifie les transactions, renforce la sécurité et accélère le paiement mensuel par code QR. Voici un exemple de code simple illustrant son utilisation :
L'API gratuite de codes QR s'avère précieuse dans le domaine des paiements, permettant aux entreprises et aux particuliers de simplifier les transactions. En intégrant une URL de paiement dans un code QR, les clients peuvent scanner rapidement ce code avec leur smartphone et finaliser leurs transactions en toute simplicité.
{
"qrFieldsData": {
"link"*: "https://example.com/pay"
}
}
| Champ | Taper | Requis | Description |
|---|---|---|---|
| link | string($hostname) | required | URL de la page de paiement |
Générez des codes QR grâce à notre API et révolutionnez vos processus de paiement, transformant ainsi les transactions en expériences fluides et efficaces.
Générez des codes QR grâce à notre API et révolutionnez vos processus de paiement. Intégrez facilement des transactions sécurisées et performantes à vos applications.
Un exemple exemplaire d'API de paiement par code QR est le code QR de PayPal. Leader reconnu des paiements en ligne, PayPal intègre son API pour simplifier et sécuriser les transactions. Voici une illustration de son fonctionnement :
L'API PayPal QR Code permet d'intégrer facilement les liens de paiement PayPal aux codes QR. Les utilisateurs peuvent scanner le code QR pour être instantanément redirigés vers une page de paiement PayPal, ce qui rend les transactions rapides et pratiques pour les entreprises comme pour les clients.
{
"qrFieldsData": {
"link"*: "https://paypal.me/username"
}
}
| Champ | Taper | Requis | Description |
|---|---|---|---|
| link | string($hostname) | required | PayPal.me ou URL de paiement |
Tirez parti de l'API de code QR de PayPal pour simplifier et accélérer votre flux de paiement, offrant ainsi une expérience de paiement moderne à vos utilisateurs.
Améliorez votre expérience de paiement en ligne grâce à l'API de code QR PayPal de Me-QR. Intégrez facilement des transactions PayPal sécurisées et performantes à vos applications.
L'API de génération de QR Code avec logo se distingue par sa grande popularité. Cette fonctionnalité permet aux utilisateurs d'intégrer leur logo au design du QR Code grâce à un QR avec logo. C'est une solution privilégiée pour la notoriété de la marque et la personnalisation.
L'API Logo QR Code vous permet de générer des codes QR pointant vers n'importe quelle URL : idéal pour les pages de marque, les portfolios ou les landing pages. Intégrez votre URL de destination et offrez à votre public une expérience de scan optimale.
{
"qrFieldsData": {
"link"*: "https://example.com"
}
}
| Champ | Taper | Requis | Description |
|---|---|---|---|
| link | string($hostname) | required | URL de destination |
Utilisez l'API Logo QR Code pour relier facilement n'importe quelle destination, en combinant la reconnaissance de la marque et la praticité de la technologie QR.
Intégrez votre marque à chaque scan grâce à une API gratuite de génération de QR Code. Améliorez la notoriété de votre marque et personnalisez facilement vos QR Codes avec des logos intégrés.
L'API de code QR de WhatsApp occupe une place de choix parmi les API de code QR pour messageries instantanées. Son utilisation facilite une interaction fluide en permettant un accès rapide à WhatsApp, ce qui en fait un leader des fonctionnalités de code QR pour messageries instantanées. Voici un exemple :
L'API QR Code de WhatsApp vous permet de générer des QR codes qui ouvrent une conversation WhatsApp avec un message prérempli. Il vous suffit de fournir un numéro de téléphone et un message (facultatif) : idéal pour le support client, les campagnes marketing et l'interaction instantanée.
{
"qrFieldsData": {
"phone"*: "+1234567890",
"message"*: "Hello!"
}
}
| Champ | Taper | Requis | Description |
|---|---|---|---|
| phone | string | required | Numéro de téléphone du destinataire au format international |
| message | string | required | Texte du message prérempli |
Intégrez l'API de code QR de WhatsApp pour favoriser les conversations directes et dynamiser l'engagement grâce à un simple scan.
Communiquez facilement avec votre public grâce au code QR WhatsApp. Accédez rapidement aux conversations d'un simple scan et optimisez votre expérience de messagerie.
L'API de code QR gratuite offre une suite complète de générateurs de codes QR pour répondre à divers besoins. Découvrez les types d'API de code QR les plus pris en charge et des exemples de code pour chacun :
Créez des codes QR qui redirigent les utilisateurs vers n'importe quelle URL.
Créez un code QR qui redirige vers n'importe quelle URL lorsqu'il est scanné.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Connectez-vous aux profils Instagram à l'aide de codes QR.
Générez un code QR renvoyant directement vers un profil ou une publication Instagram.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Lien vers des profils ou des pages Facebook via l'API REST du générateur de code QR.
Générez un code QR renvoyant vers une page, un groupe ou un profil Facebook.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Accédez aux profils Twitter ou aux tweets grâce aux codes QR.
Créez un code QR qui redirige les utilisateurs vers un profil ou un tweet Twitter/X.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Découvrez les profils TikTok grâce aux codes QR.
Générer un code QR renvoyant vers un profil ou une vidéo TikTok.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Connectez-vous aux profils via Snapchat QR.
Générer un code QR renvoyant directement vers un profil Snapchat.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Interagissez avec des chaînes ou des groupes Telegram à l'aide de codes QR.
Créez un code QR renvoyant vers une chaîne Telegram, un bot ou un contact.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Accédez à des chansons, des albums ou des artistes spécifiques sur Spotify grâce aux codes QR.
Générez un code QR qui ouvre une page Spotify pour un titre, un album ou un artiste.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Regardez des chaînes ou des vidéos YouTube à l'aide de codes QR.
Créez un code QR renvoyant vers une chaîne ou une vidéo YouTube.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Profitez de la lecture vidéo sur vos appareils mobiles grâce aux codes QR intégrés aux vidéos.
Générez un code QR qui renvoie vers n'importe quelle ressource vidéo en ligne.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Parcourez des produits Etsy spécifiques à l'aide de codes QR.
Créez un code QR renvoyant vers une boutique Etsy ou une fiche produit.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Générez des codes QR aux formes et designs uniques pour renforcer votre image de marque.
Générez un code QR qui renvoie vers n'importe quelle ressource Web grâce à un design personnalisé.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Ouvrez directement des feuilles de calcul Google Sheets spécifiques à l'aide de codes QR.
Créez un code QR renvoyant vers un document Google Sheets partagé.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Accédez à des documents Google Docs spécifiques à l'aide de codes QR.
Générez un code QR qui ouvre un document Google Docs partagé.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Répondez à des sondages ou des questionnaires en utilisant des codes QR menant à des formulaires Google spécifiques.
Créez un code QR renvoyant vers un sondage ou un questionnaire Google Forms.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Partagez les avis Google My Business à l'aide de codes QR.
Générez un code QR qui invite vos clients à laisser un avis Google sur votre entreprise.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Lien vers des documents Microsoft Office 365 à l'aide de codes QR.
Créez un code QR qui renvoie vers un document Microsoft Office 365 ou une ressource SharePoint.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Lancer des e-mails lorsque des codes QR sont scannés, permettant aux utilisateurs de composer des messages sans saisir l'adresse.
Créez un code QR qui ouvre un client de messagerie avec le destinataire, l'objet et le corps du message préremplis.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Composez directement les numéros de téléphone en utilisant les codes QR qui y renvoient.
Générez un code QR qui compose automatiquement un numéro de téléphone lorsqu'il est scanné.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Générez des codes QR pour les réseaux Wi-Fi, incluant le SSID, le mot de passe et le type de sécurité.
Créez un code QR qui connecte automatiquement les utilisateurs à un réseau WiFi.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Partagez des messages ou des informations à l'aide de codes QR contenant du texte brut.
Générez un code QR qui affiche du texte brut ou du contenu HTML lorsqu'il est scanné.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Accédez à des emplacements spécifiques, tels que des adresses, des monuments ou des points d'intérêt, via une API pour code QR.
Créez un code QR qui ouvre une page spécifique dans Google Maps.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Installez les applications de l'App Store directement en scannant leurs codes QR respectifs.
Générez un code QR intelligent qui redirige vers l'App Store ou Google Play en fonction de l'appareil de l'utilisateur.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Partagez vos informations de contact en toute simplicité grâce aux codes QR au format VCard.
Créez un code QR pour votre carte de visite numérique. Les utilisateurs pourront ainsi enregistrer vos coordonnées directement sur leur téléphone.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Visualisez les images directement sur les appareils mobiles grâce aux codes QR qui intègrent les images.
Générez un code QR qui ouvre une galerie d'images. Importez 1 à 20 images au format base64 ou fournissez leurs URL.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Accédez à plusieurs URL en un seul scan grâce aux codes QR qui renvoient vers différents sites web.
Créez un code QR qui ouvre une page de destination personnalisée avec plusieurs liens personnalisés et boutons de partage sur les réseaux sociaux.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Partagez des fichiers de tout format en intégrant un lien de téléchargement dans un code QR pour un accès mobile instantané.
Générez un code QR qui renvoie vers un fichier téléchargeable. Fournissez-le au format base64 ou sous forme d'URL directe.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Intégrez des documents PDF dans des codes QR pour un accès facile sur les appareils mobiles.
Créez un code QR qui ouvre un document PDF dans le navigateur lorsqu'il est scanné.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Profitez de la lecture audio sur vos appareils mobiles grâce aux codes QR intégrant des fichiers audio.
Générez un code QR qui permet de lire un fichier audio — idéal pour la musique, les podcasts ou les messages vocaux.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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ésentez des diaporamas PowerPoint sans effort grâce à l'intégration de codes QR.
Créez un code QR qui ouvre ou télécharge une présentation PowerPoint lorsqu'il est scanné.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
Partagez et vérifiez facilement les résultats des tests PCR grâce au code QR de test Covid.
Générez un code QR pour un certificat de santé ou de conformité, avec protection par mot de passe et date d'expiration.
{
"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"
}
}
Modification des données et des paramètres de style du code QR.
entryUIDpath Identifiant ou clé d'accès unique (code QR)
{
"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"
}
}
Afficher les données et les paramètres de personnalisation ou l'image elle-même du code QR généré.
entryUID path Identifiant ou clé d'accès unique (code QR)
format query Format d'image. Valeurs disponibles : png, svg, jpg, jpeg, json. Valeur par défaut : aucune.
{
"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"
}
}
L'API de génération de codes QR en ligne propose une gamme variée de types de codes QR pour répondre à différents besoins : redirection vers des sites web, partage d'informations de contact, accès à des lieux spécifiques, interaction avec les profils des réseaux sociaux, etc.
Passez à la vitesse supérieure en matière de création de codes QR grâce à notre générateur de codes QR API, un outil révolutionnaire qui simplifie et rationalise le processus de génération. Cette fonctionnalité exclusive, disponible uniquement avec notre abonnement Premium, permet aux développeurs et aux entreprises d'intégrer facilement la création de codes QR à leurs applications et flux de travail, pour une efficacité et une productivité accrues.
L'API ME-QR s'intègre facilement à vos systèmes existants, vous permettant d'automatiser la génération de codes QR et de les intégrer aisément à vos applications, sites web et flux de travail. Vous n'avez plus besoin de créer manuellement de codes QR, ce qui vous fait gagner un temps précieux et vous garantit une image de marque et des fonctionnalités cohérentes sur toutes les plateformes.
Grâce à la compatibilité multiplateforme de l'API ME-QR, qui couvre Android, iOS et Windows, vous pouvez créer des codes QR depuis n'importe où et les intégrer facilement à vos ressources numériques.
Exploitez toute la puissance de l'API web QR Code et optimisez la création de vos codes QR. Bénéficiez d'une efficacité et d'une productivité inégalées grâce à notre offre Premium. Abonnez-vous dès aujourd'hui et automatisez la génération de vos codes QR !
Pour commencer, vous devez créer un compte sur Me-QR. Une fois inscrit, accédez à votre tableau de bord pour générer votre clé API unique. Utilisez cette clé dans l'en-tête d'autorisation de vos requêtes HTTP pour authentifier vos appels.
Notre API est une fonctionnalité premium conçue pour une utilisation professionnelle et performante. Pour accéder aux points de terminaison de l'API et les intégrer à votre flux de travail, vous devez souscrire à l'un de nos abonnements Premium.
Oui, afin de garantir la stabilité pour tous les utilisateurs, nous mettons en place une limitation du débit. La limite exacte dépend de votre abonnement Premium. Les abonnements Standard autorisent généralement jusqu'à 50 requêtes par minute, tandis que les abonnements Entreprise offrent des limites plus élevées.
Absolument. L'API est spécialement conçue pour l'automatisation. Vous pouvez envoyer plusieurs requêtes par programmation afin de générer en quelques minutes des milliers de codes QR uniques pour les billets, les stocks ou les campagnes marketing personnalisées.
Oui. Chaque code QR dynamique généré via l'API inclut automatiquement un suivi analytique. Vous pouvez récupérer les données de scan (localisation, type d'appareil, heure) via notre tableau de bord web ou en utilisant des points de terminaison spécifiques de l'API d'analyse.
Si votre abonnement expire, votre clé API sera désactivée et vous ne pourrez plus générer de nouveaux codes. Toutefois, les codes dynamiques créés précédemment resteront actifs tant qu'ils respectent les conditions de votre ancien forfait.