Skip to main content

Images QR Code

Create a QR code linking to an image gallery.

Type Identifier

type: "images"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "images"
headlinestringOptionalGallery headline
descriptionstringOptionalGallery description
websitestringOptionalRelated website URL
image_urlsarrayOptionalArray of image URLs
shareablebooleanOptionalAllow sharing

Use Cases

  • Product photos — Showcase product imagery
  • Portfolio — Display creative work or projects
  • Real estate listings — Share property photos
  • Event galleries — Distribute event photo collections

Content Schema

{
"type": "images",
"headline": "Product Gallery",
"description": "Browse our latest product photos",
"website": "https://example.com",
"image_urls": [
"https://example.com/images/product1.jpg",
"https://example.com/images/product2.jpg",
"https://example.com/images/product3.jpg"
],
"shareable": true
}

Example Request

curl -X POST "https://integration-api.qr-build.com/qr-codes" \
-H "X-API-Key: qrb_live_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Product Photos",
"type": "images",
"content": {
"type": "images",
"headline": "Product Gallery",
"description": "Browse our latest product photos",
"website": "https://example.com",
"image_urls": [
"https://example.com/images/product1.jpg",
"https://example.com/images/product2.jpg"
],
"shareable": true
}
}'