URL QR Code
Create a QR code that links to any URL.
Type Identifier
type: "url"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "url" |
url | string | Required | The 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
- Use HTTPS URLs for security
- Avoid long URLs — use UTM parameters sparingly
- Ensure the destination is mobile-friendly
- 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"
}
}'