curl -G "https://api.scanova.io/qr/minimal/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d withlead=1
{
"count": 214,
"next": 2,
"previous": null,
"results": [
{
"id": 1042,
"qrid": "Qa1b2c3d4e5f6g7h8",
"name": "Product Launch Poster",
"qr_type": "dy",
"qr_type_display": "Dynamic",
"short_url": "https://scnv.io/a1b2c3d4",
"thumbnail": null,
"is_active": true,
"published_at": "2026-01-15T09:14:00Z",
"category_slug": "url",
"is_currently_draft": false,
"has_landing_page": false
}
]
}List QR Codes (minimal)
GET /qr/minimal/
curl -G "https://api.scanova.io/qr/minimal/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d withlead=1
{
"count": 214,
"next": 2,
"previous": null,
"results": [
{
"id": 1042,
"qrid": "Qa1b2c3d4e5f6g7h8",
"name": "Product Launch Poster",
"qr_type": "dy",
"qr_type_display": "Dynamic",
"short_url": "https://scnv.io/a1b2c3d4",
"thumbnail": null,
"is_active": true,
"published_at": "2026-01-15T09:14:00Z",
"category_slug": "url",
"is_currently_draft": false,
"has_landing_page": false
}
]
}GET https://api.scanova.io/qr/minimal/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
QR_CODE_CAN_VIEW alone. A user who can only read analytics or manage leads can still populate a QR Code selector with this endpoint.Query parameters
1 to return the with-lead shape instead, which adds lead_id and form_id to each row.NON_LANDING_PAGE_QR_CODES to exclude landing-page and GS1 categories — useful when the picker is for a feature those categories don’t support.curl -G "https://api.scanova.io/qr/minimal/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d withlead=1
Related
- List QR Codes — the full list shape, with the complete filter set.
- List QR categories — resolve the
category_slugvalues returned here. - QR Manager overview — the quotas, role permissions, and Trash model shared by every endpoint in this module.
- Management API overview — the auth scheme and quota rules that apply to this endpoint.
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Query Parameters
Set to 1 to switch to the with-lead shape, adding lead_id and form_id to each row.
Pass NON_LANDING_PAGE_QR_CODES to exclude landing-page and GS1 categories from the result.
Free-text search, same fields as the main list endpoint.
Page number.
Results per page, maximum 100.
Response
Paginated minimal list of QR codes.
Was this page helpful?