curl --request GET \
--url 'https://api.scanova.io/forms/template/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"id": 4,
"name": "Event RSVP",
"slug": "event-rsvp",
"description": "Collect attendee names, emails, and headcount for an event.",
"blocks_json": {
"fields": [
{ "type": "text", "label": "Full name", "required": true },
{ "type": "email", "label": "Email", "required": true },
{ "type": "number", "label": "Number of guests", "required": false }
]
},
"order": 1
}
]
Leads & Forms
List form templates
GET /forms/template/
GET
/
forms
/
template
/
curl --request GET \
--url 'https://api.scanova.io/forms/template/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"id": 4,
"name": "Event RSVP",
"slug": "event-rsvp",
"description": "Collect attendee names, emails, and headcount for an event.",
"blocks_json": {
"fields": [
{ "type": "text", "label": "Full name", "required": true },
{ "type": "email", "label": "Email", "required": true },
{ "type": "number", "label": "Number of guests", "required": false }
]
},
"order": 1
}
]
Lists the platform’s built-in form templates — starting-point field schemas you can pass directly as
The response is a flat array, not paginated, containing only active templates ordered by
data when creating a form.
Requires only account authentication — no
MANAGEMENT_API quota check is applied to this endpoint.curl --request GET \
--url 'https://api.scanova.io/forms/template/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"id": 4,
"name": "Event RSVP",
"slug": "event-rsvp",
"description": "Collect attendee names, emails, and headcount for an event.",
"blocks_json": {
"fields": [
{ "type": "text", "label": "Full name", "required": true },
{ "type": "email", "label": "Email", "required": true },
{ "type": "number", "label": "Number of guests", "required": false }
]
},
"order": 1
}
]
order, then name. blocks_json uses the exact same shape as a form’s own data field — pass it straight through to Create a form’s data body parameter to start from a template.
Related
- Create a form — use a template’s
blocks_jsonas the startingdata. - Management API overview — the auth scheme and quota architecture this endpoint is part of.
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
List of form templates.
Was this page helpful?