PDF QR Code
Create a QR code that links to a PDF document.
Type Identifier
type: "pdf"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "pdf" |
file_url | string | Optional | URL to the PDF file |
company_name | string | Optional | Company name |
title | string | Optional | Document title |
description | string | Optional | Document description |
website | string | Optional | Related website URL |
direct_download | boolean | Optional | Enable 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
}
}'