Promotional

Plantilla llamativa para promociones de productos, ventas flash y campañas de e-commerce.

Dimensiones: 1200x630
Template ID: promotional

Propiedades

PropiedadTipoRequeridoLong. MáximaValidación
productName
Nombre del producto
string60maxLength(60)
discount
Etiqueta de descuento
string20maxLength(20)
originalPrice
Precio original
string20maxLength(20)
salePrice
Precio de oferta
string20maxLength(20)
imageUrl
URL de la imagen del producto
string (URL)-url (HTTPS only)
primaryColor
Color principal
string (hex)-color (hex)
accentColor
Color de acento
string (hex)-color (hex)

Ejemplo

{
  "template": "promotional",
  "productName": "Premium Wireless Headphones",
  "discount": "50% OFF",
  "originalPrice": "$199.99",
  "salePrice": "$99.99",
  "imageUrl": "https://example.com/product.jpg",
  "primaryColor": "#ff3366",
  "accentColor": "#ffd23f"
}

Ejemplos de código

const response = await fetch("https://assets.qbacode.com/api/v1/generate-asset", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
        "template": "promotional",
        "productName": "Premium Wireless Headphones",
        "discount": "50% OFF",
        "originalPrice": "$199.99",
        "salePrice": "$99.99",
        "imageUrl": "https://example.com/product.jpg",
        "primaryColor": "#ff3366",
        "accentColor": "#ffd23f"
    })
});

if (response.ok) {
  const blob = await response.blob();
  const imageUrl = URL.createObjectURL(blob);
  document.getElementById("preview").src = imageUrl;
} else {
  const error = await response.json();
  console.error("Error:", error);
}