Business Page QR Code
Create a QR code for a business landing page.
Type Identifier
type: "businessPage"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "businessPage" |
company_name | string | Required | Company name |
tagline | string | Optional | Company tagline |
summary | string | Optional | Business summary |
phone | string | Optional | Phone number |
phone_alt | string | Optional | Alternative phone number |
email | string | Optional | Email address |
website | string | Optional | Website URL |
address | object | Optional | Address object |
address.street | string | Optional | Street address |
address.city | string | Optional | City |
address.state | string | Optional | State or province |
address.postal_code | string | Optional | Postal / ZIP code |
address.country | string | Optional | Country |
links | array | Optional | Array of links: [{ "label": "...", "url": "..." }] |
facilities | array | Optional | Array of facility tags |
Use Cases
- Storefront info — Share business details at physical locations
- Business cards — Link to a full business profile page
- Company directories — Provide quick access to business information
- Trade shows — Share company details with booth visitors
Content Schema
{
"type": "businessPage",
"company_name": "Acme Inc",
"tagline": "Building the future",
"summary": "Acme Inc is a leading provider of innovative solutions.",
"phone": "+1234567890",
"phone_alt": "+0987654321",
"email": "info@acme.com",
"website": "https://acme.com",
"address": {
"street": "123 Main St",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country": "USA"
},
"links": [
{ "label": "Careers", "url": "https://acme.com/careers" },
{ "label": "Support", "url": "https://acme.com/support" }
],
"facilities": ["wifi", "parking", "wheelchair"]
}
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": "Acme Business Page",
"type": "businessPage",
"content": {
"type": "businessPage",
"company_name": "Acme Inc",
"tagline": "Building the future",
"summary": "Acme Inc is a leading provider of innovative solutions.",
"phone": "+1234567890",
"email": "info@acme.com",
"website": "https://acme.com",
"address": {
"street": "123 Main St",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country": "USA"
},
"links": [
{ "label": "Careers", "url": "https://acme.com/careers" }
]
}
}'