Skip to main content

URL QR Code

Create a QR code that links to any URL.

Type Identifier

type: "url"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "url"
urlstringRequiredThe destination URL (must be valid)

Use Cases

  • Marketing campaigns — Link to landing pages
  • Product packaging — Link to product information
  • Business cards — Link to your website or portfolio
  • Event promotions — Link to ticket sales or event pages

Best Practices

  1. Use HTTPS URLs for security
  2. Avoid long URLs — use UTM parameters sparingly
  3. Ensure the destination is mobile-friendly
  4. Test the URL before creating the QR code

Content Schema

{
"type": "url",
"url": "https://example.com"
}

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": "Company Website",
"type": "url",
"content": {
"type": "url",
"url": "https://example.com/landing-page"
}
}'