Skip to main content

PDF QR Code

Create a QR code that links to a PDF document.

Type Identifier

type: "pdf"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "pdf"
file_urlstringOptionalURL to the PDF file
company_namestringOptionalCompany name
titlestringOptionalDocument title
descriptionstringOptionalDocument description
websitestringOptionalRelated website URL
direct_downloadbooleanOptionalEnable direct download

Use Cases

  • Menus — Restaurant and cafe digital menus
  • Brochures — Marketing and informational brochures
  • Manuals — Product user manuals and guides
  • Product sheets — Technical specifications and datasheets

Content Schema

{
"type": "pdf",
"file_url": "https://example.com/documents/menu.pdf",
"company_name": "Acme Restaurant",
"title": "Lunch Menu",
"description": "Our seasonal lunch menu with daily specials",
"website": "https://acmerestaurant.com",
"direct_download": false
}

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": "Restaurant Menu",
"type": "pdf",
"content": {
"type": "pdf",
"file_url": "https://example.com/documents/menu.pdf",
"company_name": "Acme Restaurant",
"title": "Lunch Menu",
"description": "Our seasonal lunch menu",
"direct_download": false
}
}'