curl -G "https://api.scanova.io/qr/tags/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d search=camp
{
"count": 2,
"next": null,
"previous": null,
"results": [
"campaign-2026",
"print"
]
}QR Codes
List tag names
GET /qr/tags/
GET
/
qr
/
tags
/
curl -G "https://api.scanova.io/qr/tags/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d search=camp
{
"count": 2,
"next": null,
"previous": null,
"results": [
"campaign-2026",
"print"
]
}The account’s tag names, as bare lowercase strings — the autocomplete source for tag inputs.
GET https://api.scanova.io/qr/tags/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
Substring match on the tag name.
integer
default:"10"
Results per page, up to
100.curl -G "https://api.scanova.io/qr/tags/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d search=camp
results is an array of strings, not objects. Tag names are always stored and returned lowercased, so Campaign-2026 and campaign-2026 are the same tag. For per-tag usage counts use List tag details.Related
- List tag details — the same tags with assigned-QR counts.
- Apply tags to many QR Codes — create and attach tags in bulk.
- Update a QR Code’s tags — set the tags on one QR Code.
- Detach tags — remove tag associations across the account.
- 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
Substring match on the tag name.
Page number.
Results per page, maximum 100.
Response
200 - application/json
Paginated list of tag names.
Was this page helpful?