Video QR Code
Create a QR code linking to a video gallery.
Type Identifier
type: "video"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "video" |
title | string | Optional | Gallery title |
description | string | Optional | Gallery description |
video_urls | array | Optional | Array of video URLs |
shareable | boolean | Optional | Allow sharing |
Use Cases
- Product demos — Showcase product features and walkthroughs
- Tutorials — Provide step-by-step video guides
- Marketing videos — Share promotional content
- Event recordings — Distribute conference talks and sessions
Content Schema
{
"type": "video",
"title": "Product Demo Videos",
"description": "Watch our latest product demonstrations",
"video_urls": [
"https://youtube.com/watch?v=example1",
"https://youtube.com/watch?v=example2"
],
"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 Demos",
"type": "video",
"content": {
"type": "video",
"title": "Product Demo Videos",
"description": "Watch our latest product demonstrations",
"video_urls": [
"https://youtube.com/watch?v=example1",
"https://youtube.com/watch?v=example2"
],
"shareable": true
}
}'