curl "https://api.scanova.io/page-template/public/product-launch-a1b2c3/"
{
"slug": "product-launch-a1b2c3",
"blocks_json": [{ "type": "hero" }],
"theme": {
"slug": "user-42-ocean-breeze-a1b2c3",
"config_json": { "color": { "accent": "#0077be", "background": "#f0f8ff" } },
"schema_version": 2
},
"accent_color": "#0077be",
"preview_bg": "#f0f8ff"
}
Themes & Page Templates
Get a public page template for rendering
GET /page-template/public//
GET
/
page-template
/
public
/
{slug}
/
curl "https://api.scanova.io/page-template/public/product-launch-a1b2c3/"
{
"slug": "product-launch-a1b2c3",
"blocks_json": [{ "type": "hero" }],
"theme": {
"slug": "user-42-ocean-breeze-a1b2c3",
"config_json": { "color": { "accent": "#0077be", "background": "#f0f8ff" } },
"schema_version": 2
},
"accent_color": "#0077be",
"preview_bg": "#f0f8ff"
}
Gets a minimal, rendering-focused shape of a page template, on the Management API host (
This is deliberately sparse — no
api.scanova.io).
GET https://api.scanova.io/page-template/public/{slug}/
No authentication required.
string
required
The template’s
slug.curl "https://api.scanova.io/page-template/public/product-launch-a1b2c3/"
{
"slug": "product-launch-a1b2c3",
"blocks_json": [{ "type": "hero" }],
"theme": {
"slug": "user-42-ocean-breeze-a1b2c3",
"config_json": { "color": { "accent": "#0077be", "background": "#f0f8ff" } },
"schema_version": 2
},
"accent_color": "#0077be",
"preview_bg": "#f0f8ff"
}
name, description, or other gallery metadata — meant for rendering a published page rather than browsing. Use Retrieve a page template instead when you need the full template record. 404 if slug doesn’t match any active template.
Related
- Retrieve a page template — the full, authenticated equivalent.
- 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.
Path Parameters
Response
Minimal template shape for rendering.
Was this page helpful?