curl "https://api.scanova.io/page-template/tags/"
{
"total": 42,
"tags": [
{ "name": "business", "count": 8 },
{ "name": "event", "count": 5 }
]
}
Themes & Page Templates
List page template tags
GET /page-template/tags/
GET
/
page-template
/
tags
/
curl "https://api.scanova.io/page-template/tags/"
{
"total": 42,
"tags": [
{ "name": "business", "count": 8 },
{ "name": "event", "count": 5 }
]
}
Lists tag usage counts across the system template gallery, on the Management API host (
Counts only system templates (
api.scanova.io).
GET https://api.scanova.io/page-template/tags/
No authentication required.
curl "https://api.scanova.io/page-template/tags/"
{
"total": 42,
"tags": [
{ "name": "business", "count": 8 },
{ "name": "event", "count": 5 }
]
}
is_system: true) — your own templates aren’t included. Tag names are always lowercase. A template with multiple tags contributes to each tag’s count, so the individual count values can sum to more than total.
Related
- List page templates — use
?category=with one of these tag names to filter the gallery. - 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.
Response
200 - application/json
Tag counts.
Was this page helpful?