List starter templates
GET
/templates/starters
const url = 'https://mail.teamander.com/v1/templates/starters';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://mail.teamander.com/v1/templates/starters \ --header 'Authorization: Bearer <token>'Curated starting points for the template editor, each rendered with your brand settings applied. thumbnail_html is the compiled email, suitable for a scaled gallery preview.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Starters
Media typeapplication/json
object
data
required
Array<object>
object
slug
required
string
name
required
string
category
required
string
description
required
string
subject_template
required
string
thumbnail_html
required
string
Examplegenerated
{ "data": [ { "slug": "example", "name": "example", "category": "example", "description": "example", "subject_template": "example", "thumbnail_html": "example" } ]}Missing or invalid API key
Media typeapplication/json
object
error
required
string
message
string
Example
{ "error": "Invalid API key"}