Skip to main content

List QR Codes

Retrieve a paginated list of all QR codes in your workspace.

GET/qr-codes
info

List responses return a lightweight representation of each QR code without content and design fields. Use the Get QR Code endpoint to retrieve the full object.

Headers

HeaderRequiredDescription
X-API-KeyRequiredYour API key
QR-VersionOptionalAPI version (e.g., 2026-02-16)

Query Parameters

ParameterTypeDefaultDescription
pageinteger1Page number (starts at 1)
limitinteger20Items per page (max 100)
searchstringSearch by name
typestringFilter by QR code type
folder_idstringFilter by folder ID (only QR codes in this folder)

Pagination

FieldTypeDescription
pageintegerCurrent page number
limitintegerItems per page
totalintegerTotal number of QR codes
has_morebooleanWhether more pages exist

Request

curl -X GET "https://integration-api.qr-build.com/qr-codes?page=1&limit=10&type=url" \
-H "X-API-Key: qrb_live_your_api_key_here"

Response

{
"object": "list",
"success": true,
"data": [
{
"id": "qr-aBc123XyZ9",
"name": "My Website QR",
"type": "url",
"active": true,
"folder_id": "fld-aBc123XyZ9",
"folder_name": "Marketing Campaign",
"short_url": "https://qr-build.io/qr-aBc123XyZ9",
"created_at": "2026-02-16T10:30:00Z",
"updated_at": "2026-02-16T10:30:00Z"
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 45,
"has_more": true
}
}