Skip to main content

Link List QR Code

Create a QR code with multiple links (link-in-bio style).

Type Identifier

type: "linkList"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "linkList"
titlestringOptionalPage title
subtitlestringOptionalPage subtitle
linksarrayOptionalArray of links
links[].titlestringRequiredLink title
links[].urlstringRequiredLink URL
links[].image_urlstringOptionalLink thumbnail image URL

Use Cases

  • Link-in-bio — Consolidate all important links in one page
  • Resource collections — Share curated lists of resources
  • Portfolio links — Showcase multiple projects or works
  • Event resources — Provide attendees with relevant links

Content Schema

{
"type": "linkList",
"title": "My Links",
"subtitle": "All my important links in one place",
"links": [
{
"title": "Portfolio",
"url": "https://portfolio.example.com",
"image_url": "https://example.com/portfolio-thumb.png"
},
{ "title": "Blog", "url": "https://blog.example.com" },
{ "title": "Shop", "url": "https://shop.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": "My Link in Bio",
"type": "linkList",
"content": {
"type": "linkList",
"title": "Jane Doe",
"subtitle": "Designer & Developer",
"links": [
{ "title": "Portfolio", "url": "https://janedoe.com" },
{ "title": "Blog", "url": "https://blog.janedoe.com" },
{ "title": "Shop", "url": "https://shop.janedoe.com" }
]
}
}'