curl "https://api.scanova.io/qr-assets/category-template/?category_slug=website-url"
[
{
"id": 21,
"name": "Ocean Blue",
"template_id": "cat-tpl-21",
"category_slug": "website-url",
"pattern_info": "{\"dotStyle\":\"round\"}",
"image": "https://cdn.scanova.io/upload/category-templates/21.png",
"created": "2026-01-15T08:00:00Z"
}
]
QR Assets
List category templates
GET /qr-assets/category-template/
GET
/
qr-assets
/
category-template
/
curl "https://api.scanova.io/qr-assets/category-template/?category_slug=website-url"
[
{
"id": 21,
"name": "Ocean Blue",
"template_id": "cat-tpl-21",
"category_slug": "website-url",
"pattern_info": "{\"dotStyle\":\"round\"}",
"image": "https://cdn.scanova.io/upload/category-templates/21.png",
"created": "2026-01-15T08:00:00Z"
}
]
Lists the shared catalog of predefined design templates per QR category, on the Management API host (
api.scanova.io).
GET https://api.scanova.io/qr-assets/category-template/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
This endpoint doesn’t require a Management API key — it’s intentionally open to anonymous callers (guest access to the Publish Panel’s template gallery). The dataset is a shared, non-personalized catalog, not scoped to any account, so there’s nothing user-specific to protect.
string
Filter to templates for one QR category, e.g.
website-url.curl "https://api.scanova.io/qr-assets/category-template/?category_slug=website-url"
[
{
"id": 21,
"name": "Ocean Blue",
"template_id": "cat-tpl-21",
"category_slug": "website-url",
"pattern_info": "{\"dotStyle\":\"round\"}",
"image": "https://cdn.scanova.io/upload/category-templates/21.png",
"created": "2026-01-15T08:00:00Z"
}
]
Not paginated
The response is a plain JSON array, not the usual{count, next, previous, results} envelope every other list endpoint in this module uses — the full matching set comes back in one response.
Related
- List QR Code design templates — the account-owned equivalent, which does paginate.
- 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
Filter to templates for one QR category, e.g. website-url.
Response
200 - application/json
Plain array of category templates (no pagination envelope).
Was this page helpful?