Link List QR Code
Create a QR code with multiple links (link-in-bio style).
Type Identifier
type: "linkList"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "linkList" |
title | string | Optional | Page title |
subtitle | string | Optional | Page subtitle |
links | array | Optional | Array of links |
links[].title | string | Required | Link title |
links[].url | string | Required | Link URL |
links[].image_url | string | Optional | Link 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" }
]
}
}'