Skip to main content

Video QR Code

Create a QR code linking to a video gallery.

Type Identifier

type: "video"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "video"
titlestringOptionalGallery title
descriptionstringOptionalGallery description
video_urlsarrayOptionalArray of video URLs
shareablebooleanOptionalAllow 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
}
}'