ME-QR / Código QR de API

Código QR de API

¿Necesitas crear códigos QR a gran escala? Integra nuestra API generadora de códigos QR en tu negocio y automatiza procesos. Con la API de Me-QR, tienes acceso a todos los tipos de códigos QR.

Genera tu primer código QR en 10 segundos.

Genera tu primer código QR en segundos con una sola solicitud a la API.

Código
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);

Vista previa del código QR
QR code example generated via ME-QR API

Autenticación y claves API

Utilice una clave API para autenticar sus solicitudes.

Obtén tu clave API

Encuéntralo en tu panel de control:

Tablero Integraciones claves API

Úsalo en tu solicitud

Agregue su clave API al encabezado de la solicitud:

Authorization: Bearer YOUR_API_KEY

Uso, límites y acceso

Todo lo que necesitas saber sobre el uso, los límites y el acceso a la API.

Precios de uso

Incluye hasta 10.000 códigos QR al mes.

$0.005 / pedido

Hasta 100.000 solicitudes

$0.0025 / pedido

100k+ requests

Acceso API

Free

gratuito

3 claves API · Válidas por 3 días

Premium

Prima

Claves API ilimitadas · Sin caducidad

Límites de la API: ~1 solicitud/seg · 50 solicitudes/min (igual para todos los planes)

Póngase en contacto con el servicio de asistencia para habilitar un uso adicional.

Parámetros del código QR

Defina el contenido, la apariencia y la salida de sus códigos QR utilizando los parámetros disponibles.

Parámetro Tipo Defecto Descripción
tokenrequerido string token de acceso a la funcionalidad de la API
qrType integer 1 Tipo de código QR: 1=Enlace, 4=PDF, 5=Correo electrónico, 7=VCard…
qrFieldsData object [] QR code content depending on the type (e.g. {"link": "https://…"})
title string "Qr Code" Título del código QR que se muestra en el panel de control
format string "png" Formato de salida: png, svg, jpg, jpeg, json
designType string "base" Tipo de diseño QR: base o arte
qrFolderOptions object null Folder placement: {"folderName": "…", "subfolderName": "…"}
entryId integer null ID del código QR existente para actualizar en lugar de crear uno nuevo

Parámetros de color y forma

Defina el contenido, la apariencia y la salida de sus códigos QR utilizando los parámetros disponibles.

Parámetro Tipo Defecto Descripción
qrOptions
size integer 300 Tamaño de la imagen QR devuelta en píxeles.
errorCorrectionLevel string "Q" Corrección de errores: L, M, Q, H
pattern string "square" Estilo de puntos: cuadrado, puntos, redondeado, elegante, rombo, chispa…
patternColor string "#000000" El color del código qr de puntos
patternBackground string "#ffffff" Color de fondo del código QR
cornetsOuter string "square" Estilo de esquina exterior: cuadrado, punteado, elegante, engranaje, extra redondeado…
cornetsOuterColor string "#000000" Color de las esquinas exteriores
cornetsInterior string "square" Estilo de esquina interior: cuadrado, punto, elegante, rombo, estrella…
cornetsInteriorColor string "#000000" Color de las esquinas interiores
logotype string null Logotipo central: enumeración predefinida, URL o imagen base64
logotypeSize number 0.3 Coeficiente de tamaño del logotipo: 0–1 (máximo recomendado: 0,5)
logotypeMargin number 0 Margen del logotipo en píxeles
logotypeHideBackground boolean true Ocultar los puntos cubiertos por el logotipo
gradientPattern object null Degradado para puntos: {tipo, rotación, colores[]}
gradientCornetsOuter object null Degradado para las esquinas exteriores
gradientCornetsInterior object null Degradado para las esquinas interiores
gradientBackground object null Degradado para el fondo
qrFrame
name string "noFrame" Diseño de la estructura (más de 200 opciones o sin estructura)
color string "#000000" Color del marco
backgroundColor string "#ffffff" color de fondo del marco
text string "" Texto de la etiqueta del marco (máximo 20 caracteres)
textSize integer null Tamaño de fuente en píxeles (1–50)
textColor string "#9C3AAF" color del texto del marco
textFont string "Roboto" Fuente: Arial, Roboto, Georgia, Verdana…

Ejemplos de solicitudes y resultados

Explora ejemplos de solicitudes a la API y los códigos QR que generan.

Código QR básico

URL de solicitud
https://me-qr.com/api/v2/qr/link/create

Método de solicitud
POST

Código
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"
  }'

Vista previa del código QR
Basic QR code generated via ME-QR API

Código QR con colores

URL de solicitud
https://me-qr.com/api/v2/qr/link/create

Método de solicitud
POST

Código
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"
    }
  }'

Vista previa del código QR
Colored QR code generated via ME-QR API

Código QR con marcos

URL de solicitud
https://me-qr.com/api/v2/qr/link/create

Método de solicitud
POST

Código
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"
    }
  }'

Vista previa del código QR
QR code with frame generated via ME-QR API

Código QR de API: Generador de códigos QR para diferentes propósitos

La API de códigos QR es una potente herramienta diseñada para la creación masiva de códigos QR y su perfecta integración en los procesos empresariales, permitiendo la automatización mediante la tecnología QR. Esta API resulta fundamental para optimizar las operaciones, mejorar la eficiencia y proporcionar una solución sólida para las empresas que buscan incorporar códigos QR en sus flujos de trabajo.

Un ejemplo notable de la funcionalidad de la API se demuestra a través del punto final /api/qr/create/, que permite generar códigos QR mediante programación:

Post /api/qr/create/ Crear código QR por tipo

Te permite generar un código QR utilizando uno de los tipos disponibles en me-qr. Cada solicitud generará un nuevo código QR.

Parámetros

Sin parámetros

Cuerpo de la solicitud
application/json
{
  "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"
  }
}
Respuestas
Código Descripción Campo de golf
default No hay enlaces

API de generador de códigos QR con control total

La API Me-QR Generator ofrece un control integral sobre la generación de códigos QR, proporcionándole una gama de funciones para adaptar los códigos QR a sus necesidades específicas:

Países API

Obtenga una lista de países compatibles con la API de códigos QR personalizados.

Get /api/v2/countries/ Lista de países

Recuperar la lista de países disponibles.

Parámetros
Nombre Descripción
country
string
(query)

Buscar por nombre de país.

Respuestas
Código Descripción Campo de golf
200

Respuesta exitosa

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
No hay enlaces

Este punto final le permite obtener una lista de países disponibles, lo que facilita la localización y la personalización en función de las preferencias geográficas.

Ciudades API

Acceda a una lista de ciudades compatibles para ajustar los detalles del código QR.

Get /api/v2/cities/ Lista de ciudades

Recuperar la lista de ciudades disponibles.

Parámetros
Nombre Descripción
country
string
(query)

Buscar por nombre de país.

Respuestas
Código Descripción Campo de golf
200

Respuesta exitosa

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
No hay enlaces

Puedes usar esta función para seleccionar ciudades específicas, lo que aumenta la relevancia de los códigos QR para campañas o difusión de información en ubicaciones específicas.

Zonas horarias de la API

Obtenga una lista de las zonas horarias compatibles para incorporar información sensible al tiempo en los códigos QR.

Get /api/v2/timezones/ Lista de zonas horarias

Recuperar la lista de zonas horarias disponibles.

Parámetros
Nombre Descripción
timezone
string
(query)

Buscar por nombre de zona horaria.

Respuestas
Código Descripción Campo de golf
200

Respuesta exitosa

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
No hay enlaces

Esta funcionalidad permite alinear el contenido del código QR con datos específicos de tiempo, garantizando así su relevancia y actualidad.

Lenguajes de API

Acceda a la lista de idiomas compatibles para la personalización del texto y el contenido de los códigos QR.

Get /api/v2/languages/ Lista de idiomas

Recuperar la lista de idiomas disponibles.

Parámetros
Nombre Descripción
language
string
(query)

Buscar por nombre de idioma.

Respuestas
Código Descripción Campo de golf
200

Respuesta exitosa

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
No hay enlaces

Puedes utilizar esta función para adaptarte a las diversas preferencias lingüísticas, lo que hace que los códigos QR sean más accesibles y fáciles de usar en contextos multilingües.

La flexibilidad que ofrecen estas funciones le permite crear una API de código QR dinámica adaptada a regiones, ciudades, zonas horarias e idiomas específicos, mejorando así la eficacia de sus estrategias de comunicación e interacción basadas en códigos QR.

Tipos de API del generador de códigos QR

Nuestra API de generación de códigos QR ofrece una amplia variedad de tipos para la generación de códigos QR, adaptándose a diversas necesidades y funcionalidades. Exploremos algunos de estos tipos en detalle.

API de pago mediante código QR

La API gratuita de códigos QR resulta valiosa en el ámbito de los pagos gracias a su fluidez y eficiencia. Simplifica las transacciones, mejora la seguridad y agiliza el pago mensual mediante código QR. Aquí tienes un ejemplo de código sencillo que demuestra su uso:

Post /api/v2/qr/payment/create API de pago mediante código QR
API de pago mediante código QR

La API gratuita de códigos QR resulta muy valiosa en el ámbito de los pagos, ya que permite a empresas y particulares agilizar las transacciones. Al integrar una URL de pago en un código QR, los clientes pueden escanearlo rápidamente con sus smartphones y completar las transacciones sin problemas.

Cuerpo de la solicitud application/json
{
  "qrFieldsData": {
    "link"*: "https://example.com/pay"
  }
}
Campo Tipo Requerido Descripción
link string($hostname) required URL de la página de pago

Genera códigos QR mediante API y revoluciona tus procesos de pago con nosotros, transformando las transacciones en experiencias fluidas y eficientes.

Genera códigos QR mediante API y revoluciona tus procesos de pago con nosotros. Integra transacciones seguras y eficientes en tus aplicaciones sin problemas.

API de código QR de PayPal

Un ejemplo paradigmático de una API de pago mediante código QR es el código QR de PayPal. Reconocido como líder en pagos en línea, la integración de la API de PayPal agiliza las transacciones de forma segura. He aquí una ilustración básica de su implementación:

Post /api/v2/qr/paypal/create Código QR API de PayPal
Código QR API de PayPal

La API de códigos QR de PayPal permite integrar fácilmente los enlaces de pago de PayPal en los códigos QR. Los usuarios pueden escanear el código QR para acceder instantáneamente a una página de pago de PayPal, lo que facilita y agiliza las transacciones tanto para empresas como para clientes.

Cuerpo de la solicitud application/json
{
  "qrFieldsData": {
    "link"*: "https://paypal.me/username"
  }
}
Campo Tipo Requerido Descripción
link string($hostname) required PayPal.me o URL de pago

Aprovecha la API de códigos QR de PayPal para simplificar y acelerar tu flujo de pagos, ofreciendo una experiencia de pago moderna a tus usuarios.

Mejora tu experiencia de pago online con la API de código QR de PayPal de Me-QR. Integra fácilmente transacciones seguras y eficientes de PayPal en tus aplicaciones.

Cómo generar un código QR de WhatsApp mediante API

El código QR de la API de WhatsApp ocupa un lugar destacado entre las API de códigos QR para mensajería. Su uso facilita una interacción fluida al permitir un acceso rápido a WhatsApp, convirtiéndola en líder en el ámbito de las funcionalidades QR para mensajería. He aquí un ejemplo:

Post /api/v2/qr/whatsapp/create Código QR API de WhatsApp
Código QR API de WhatsApp

La API de códigos QR de WhatsApp te permite generar códigos QR que abren una conversación de WhatsApp con un mensaje predefinido. Solo tienes que proporcionar un número de teléfono y un mensaje opcional; ideal para atención al cliente, campañas de marketing e interacción instantánea.

Cuerpo de la solicitud application/json
{
  "qrFieldsData": {
    "phone"*: "+1234567890",
    "message"*: "Hello!"
  }
}
Campo Tipo Requerido Descripción
phone string required Número de teléfono del destinatario en formato internacional
message string required Texto del mensaje prellenado

Integra la API de códigos QR de WhatsApp para impulsar conversaciones directas y aumentar la interacción con un solo escaneo.

Conéctate con tu audiencia sin problemas mediante el Código QR de WhatsApp. Permite un acceso rápido a las conversaciones con solo escanear, mejorando tu experiencia de mensajería.

Descubre más tipos de API QR con Me-QR.

La API gratuita de códigos QR ofrece un conjunto completo de tipos de generadores de API de códigos QR para satisfacer diversas necesidades. Explore los tipos de API de códigos QR más compatibles y ejemplos de código para cada uno:

Instagram

Conéctate con perfiles de Instagram mediante códigos QR.

Post /api/v2/qr/instagram/create

Genera un código QR que enlace directamente a un perfil o publicación de Instagram.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/instagram/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/instagram/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Facebook

Enlace a perfiles o páginas de Facebook mediante la API REST del generador de códigos QR.

Post /api/v2/qr/facebook/create

Genera un código QR que enlace a una página, grupo o perfil de Facebook.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/facebook/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/facebook/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Twitter

Acceda a perfiles o tweets de Twitter mediante códigos QR.

Post /api/v2/qr/twitter/create

Crea un código QR que dirija a los usuarios a un perfil o tuit de Twitter/X.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/twitter/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/twitter/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

TikTok

Descubre perfiles de TikTok mediante códigos QR.

Post /api/v2/qr/tiktok/create

Genera un código QR que enlace a un perfil o vídeo de TikTok.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/tiktok/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/tiktok/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Snapchat

Conéctate con los perfiles a través de QR de Snapchat.

Post /api/v2/qr/snapchat/create

Genera un código QR que enlace directamente a un perfil de Snapchat.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/snapchat/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/snapchat/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Telegram

Interactúa con canales o grupos de Telegram mediante códigos QR.

Post /api/v2/qr/telegram/create

Crea un código QR que enlace a un canal, bot o contacto de Telegram.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/telegram/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/telegram/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Spotify

Accede a canciones, álbumes o artistas específicos de Spotify mediante códigos QR.

Post /api/v2/qr/spotify/create

Genera un código QR que abra la página de una canción, álbum o artista en Spotify.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/spotify/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/spotify/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "qrFieldsData": {
    "link": "https://open.spotify.com/track/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Youtube

Mira canales o vídeos de YouTube usando códigos QR.

Post /api/v2/qr/youtube/create

Crea un código QR que enlace a un canal o vídeo de YouTube.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/youtube/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/youtube/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Video

Disfruta de la reproducción de vídeo en dispositivos móviles mediante códigos QR integrados en los vídeos.

Post /api/v2/qr/video/create

Genera un código QR que enlace con cualquier recurso de vídeo en línea.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/video/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/video/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Etsy

Explora productos específicos de Etsy mediante códigos QR.

Post /api/v2/qr/etsy/create

Crea un código QR que enlace a una tienda de Etsy o a la ficha de un producto.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/etsy/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/etsy/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Shaped

Genera códigos QR con formas y diseños únicos para potenciar la imagen de marca.

Post /api/v2/qr/shaped/create

Genera un código QR que enlace con cualquier recurso web mediante un diseño personalizado.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/shaped/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/shaped/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Hojas de cálculo de Google

Abre hojas de cálculo específicas de Google Sheets directamente mediante códigos QR.

Post /api/v2/qr/google-sheets/create

Crea un código QR que enlace a un documento compartido de Google Sheets.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/google-sheets/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/google-sheets/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Google Docs

Acceda a documentos específicos de Google Docs mediante códigos QR.

Post /api/v2/qr/google-doc/create

Genera un código QR que abra un documento compartido de Google Docs.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/google-doc/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/google-doc/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Formularios de Google

Responda encuestas o cuestionarios utilizando códigos QR que le redirigirán a formularios específicos de Google Forms.

Post /api/v2/qr/google-forms/create

Crea un código QR que enlace a una encuesta o cuestionario de Google Forms.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/google-forms/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/google-forms/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Reseña de Google

Comparte reseñas de Google My Business mediante códigos QR.

Post /api/v2/qr/google-review/create

Genera un código QR que dirija a los clientes a dejar una reseña de tu negocio en Google.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/google-review/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/google-review/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Office365

Enlace a documentos de Microsoft Office 365 mediante códigos QR.

Post /api/v2/qr/office365/create

Crea un código QR que enlace a un documento de Microsoft Office 365 o a un recurso de SharePoint.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/office365/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/office365/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Email

Se envían correos electrónicos al escanear códigos QR, lo que permite a los usuarios redactar mensajes sin necesidad de escribir la dirección.

Post /api/v2/qr/email/create

Crea un código QR que abra un cliente de correo electrónico con el destinatario, el asunto y el cuerpo del mensaje precargados.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/email/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/email/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Teléfono

Marque números de teléfono directamente utilizando códigos QR que enlazan con los números de teléfono.

Post /api/v2/qr/phone/create

Genera un código QR que, al escanearlo, marque automáticamente un número de teléfono.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/phone/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/phone/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

WiFi

Genera códigos QR para redes Wi-Fi, incluyendo SSID, contraseña y tipo de seguridad.

Post /api/v2/qr/wifi/create

Crea un código QR que conecte automáticamente a los usuarios a una red WiFi.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/wifi/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/wifi/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Text

Comparta mensajes o información mediante códigos QR que contengan texto sin formato.

Post /api/v2/qr/text/create

Genera un código QR que muestre texto sin formato o contenido HTML al escanearlo.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/text/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/text/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Map

Acceda a ubicaciones específicas, como direcciones, puntos de referencia o lugares de interés, a través de la API para códigos QR.

Post /api/v2/qr/map/create

Crea un código QR que abra una ubicación específica en Google Maps.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/map/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/map/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

App Store

Instala las aplicaciones de la App Store directamente escaneando sus respectivos códigos QR.

Post /api/v2/qr/store/create

Genera un código QR inteligente que redirige a la App Store o a Google Play según el dispositivo del usuario.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/store/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/store/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

VCard

Comparta información de contacto fácilmente mediante códigos QR en formato VCard.

Post /api/v2/qr/vcard/create

Crea un código QR para tu tarjeta de presentación digital. Los usuarios podrán guardar tu información de contacto directamente en su teléfono.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/vcard/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/vcard/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Image

Visualiza imágenes directamente en dispositivos móviles mediante códigos QR que las incorporan.

Post /api/v2/qr/gallery/create

Genera un código QR que abre una galería de imágenes. Sube entre 1 y 20 imágenes en formato base64 o proporciona las URL.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/gallery/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/gallery/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

File

Comparta archivos de cualquier formato insertando un enlace de descarga en un código QR para un acceso móvil instantáneo.

Post /api/v2/qr/file/create

Genera un código QR que enlace a un archivo descargable. Proporciónalo en formato base64 o como URL directa.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/file/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/file/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

PDF

Inserta documentos PDF en códigos QR para acceder a ellos fácilmente desde dispositivos móviles.

Post /api/v2/qr/pdf/create

Crea un código QR que, al escanearlo, abra un documento PDF en el navegador.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/pdf/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/pdf/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

Audio

Disfruta de la reproducción de audio en dispositivos móviles mediante códigos QR que incorporan archivos de audio.

Post /api/v2/qr/audio/create

Genera un código QR que reproduce un archivo de audio, ideal para música, podcasts o mensajes de voz.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/audio/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/audio/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

PPTX

Realice presentaciones de PowerPoint sin esfuerzo con presentaciones que incorporan códigos QR.

Post /api/v2/qr/pptx/create

Crea un código QR que, al escanearlo, abra o descargue una presentación de PowerPoint.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/pptx/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/pptx/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

PCR

Comparta y verifique los resultados de las pruebas PCR de forma práctica utilizando el Código QR de prueba de Covid.

Post /api/v2/qr/pcr/create

Genera un código QR para un certificado sanitario o de cumplimiento normativo con protección mediante contraseña y fecha de caducidad.

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Put /api/v2/qr/pcr/update/{entryUID}

Modificación de los parámetros de datos y estilo del código QR.

Parámetros

entryUIDpath  Identificador o clave de acceso única (código QR)

Cuerpo de la solicitud application/json
{
  "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"
                        }
                        }
Get /api/v2/qr/pcr/{entryUID}

Visualiza los datos y la configuración de personalización o la imagen del código QR generado.

Parámetros

entryUID path  Identificador o clave de acceso única (código QR)

format query  Formato de imagen. Valores disponibles: png, svg, jpg, jpeg, json. Predeterminado: null

Respuesta 200 application/json
{
  "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"
                        }
                        }

La API del generador de códigos QR en línea ofrece una amplia gama de tipos de API QR para satisfacer diversas necesidades. Desde dirigir a los usuarios a sitios web, compartir información de contacto, acceder a ubicaciones específicas, interactuar con perfiles en redes sociales y mucho más.

Mejora tu rutina con la API Me-QR.

Lleva la creación de códigos QR a un nivel completamente nuevo con nuestro Generador de Códigos QR API, una herramienta innovadora que simplifica y optimiza los procesos de generación de códigos QR. Esta función exclusiva, disponible solo en nuestro Plan Premium, permite a desarrolladores y empresas integrar sin problemas la creación de códigos QR en sus aplicaciones y flujos de trabajo, mejorando la eficiencia y la productividad.

La API ME-QR se integra fácilmente con sus sistemas existentes, permitiéndole automatizar la generación de códigos QR e incorporarlos sin esfuerzo en sus aplicaciones, sitios web y flujos de trabajo. Esto elimina la necesidad de crear códigos QR manualmente, ahorrándole tiempo y esfuerzo valiosos, a la vez que garantiza una imagen de marca y una funcionalidad uniformes en todas las plataformas.

Gracias a la compatibilidad multiplataforma de la API ME-QR, que abarca Android, iOS y Windows, puedes crear códigos QR desde cualquier lugar e integrarlos sin problemas en tus activos digitales.

Aprovecha el poder de la API web de códigos QR y optimiza tus capacidades de creación de códigos QR. Experimenta la eficiencia y productividad inigualables que ofrece nuestro plan Premium. ¡Suscríbete hoy y comienza a automatizar tus tareas de generación de códigos QR!

Preguntas frecuentes