Skip to main content

API Reference

Complete reference for all QR Build API endpoints.

Endpoints

MethodEndpointDescription
POST/qr-codesCreate a new QR code
GET/qr-codesList all QR codes
GET/qr-codes/:idGet a specific QR code
PATCH/qr-codes/:idUpdate a QR code
DELETE/qr-codes/:idDelete a QR code
GET/qr-codes/:id/imageGenerate QR code image
GET/foldersList all folders
POST/foldersCreate a folder
PATCH/folders/:idUpdate a folder
DELETE/folders/:idDelete a folder
GET/templatesList all templates
GET/templates/:idGet a template
POST/templatesCreate a template
PATCH/templates/:idUpdate a template
DELETE/templates/:idDelete a template

Supported QR Types

TypeDescriptionDocs
urlLink to any website URLURL
vCardDigital business cardvCard
wifiWiFi network credentialsWiFi
emailPre-filled emailEmail
pdfPDF documentPDF
socialMediaSocial media linksSocial Media
linkListMultiple links (link-in-bio)Link List
locationGoogle Maps locationLocation
eventCalendar eventEvent
appApp store linksApp
videoVideo galleryVideo
imagesImage galleryImages
couponDiscount couponCoupon
businessPageBusiness landing pageBusiness Page
plainTextPlain text contentPlain Text

Quick Reference

Base URL:    https://integration-api.qr-build.com
Auth: X-API-Key header
Versioning: QR-Version header (date-based)
Rate limits: Per workspace, monthly

Authentication

curl -X GET "https://integration-api.qr-build.com/qr-codes" \
-H "X-API-Key: qrb_live_your_api_key_here" \
-H "QR-Version: 2026-02-16"

Response Format

{
"object": "qr",
"success": true,
"data": { ... }
}

Error Format

{
"success": false,
"error": {
"code": "ERROR_CODE",
"message": "Description"
}
}