Images QR Code
Create a QR code linking to an image gallery.
Type Identifier
type: "images"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "images" |
headline | string | Optional | Gallery headline |
description | string | Optional | Gallery description |
website | string | Optional | Related website URL |
image_urls | array | Optional | Array of image URLs |
shareable | boolean | Optional | Allow 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
}
}'