Social Media QR Code
Create a QR code linking to your social media profiles.
Type Identifier
type: "socialMedia"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "socialMedia" |
headline | string | Optional | Page headline |
description | string | Optional | Page description |
socials | array | Required | Array of social links |
socials[].platform | string | Required | Platform name (e.g., "instagram", "twitter", "linkedin", "facebook", "tiktok", "youtube") |
socials[].url | string | Required | Profile URL |
Use Cases
- Business profiles — Centralize all social media links
- Influencer pages — Share all platforms in one scan
- Brand awareness — Grow your social media following
- Events — Connect attendees with your social channels
Content Schema
{
"type": "socialMedia",
"headline": "Follow us on social media",
"description": "Stay connected with our latest updates",
"socials": [
{ "platform": "instagram", "url": "https://instagram.com/acme" },
{ "platform": "twitter", "url": "https://twitter.com/acme" },
{ "platform": "linkedin", "url": "https://linkedin.com/company/acme" }
]
}
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": "Social Media Links",
"type": "socialMedia",
"content": {
"type": "socialMedia",
"headline": "Follow Acme Inc",
"socials": [
{ "platform": "instagram", "url": "https://instagram.com/acme" },
{ "platform": "twitter", "url": "https://twitter.com/acme" },
{ "platform": "linkedin", "url": "https://linkedin.com/company/acme" }
]
}
}'