Skip to main content

Business Page QR Code

Create a QR code for a business landing page.

Type Identifier

type: "businessPage"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "businessPage"
company_namestringRequiredCompany name
taglinestringOptionalCompany tagline
summarystringOptionalBusiness summary
phonestringOptionalPhone number
phone_altstringOptionalAlternative phone number
emailstringOptionalEmail address
websitestringOptionalWebsite URL
addressobjectOptionalAddress object
address.streetstringOptionalStreet address
address.citystringOptionalCity
address.statestringOptionalState or province
address.postal_codestringOptionalPostal / ZIP code
address.countrystringOptionalCountry
linksarrayOptionalArray of links: [{ "label": "...", "url": "..." }]
facilitiesarrayOptionalArray 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" }
]
}
}'