curl -G "https://api.scanova.io/qr/tags/details/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d ordering=-qr_code_assigned
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"name": "campaign-2026",
"qr_code_assigned": 42
},
{
"name": "print",
"qr_code_assigned": 7
}
]
}QR Codes
List tag details
GET /qr/tags/details/
GET
/
qr
/
tags
/
details
/
curl -G "https://api.scanova.io/qr/tags/details/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d ordering=-qr_code_assigned
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"name": "campaign-2026",
"qr_code_assigned": 42
},
{
"name": "print",
"qr_code_assigned": 7
}
]
}The account’s tags with a usage count each — the data behind a tag-management screen.
GET https://api.scanova.io/qr/tags/details/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
Substring match on the tag name.
string
One of
name, created, qr_code_assigned. Prefix with - to sort descending, e.g. ordering=-qr_code_assigned for the most-used tags first.curl -G "https://api.scanova.io/qr/tags/details/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-d ordering=-qr_code_assigned
qr_code_assigned is an annotated count of the QR Codes the tag is attached to, computed per request. Names are returned lowercased.Related
- List tag names — the same tags as bare strings, for autocomplete.
- Apply tags to many QR Codes — raise these counts in bulk.
- Detach tags — drop these counts back to zero for a tag.
- 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.
One of name, created, qr_code_assigned. Prefix with - to sort descending.
Page number.
Results per page, maximum 100.
Response
200 - application/json
Paginated tags with usage counts.
Was this page helpful?