SendLit logoSendLit Docs
API ReferenceSystem templates

List built-in starting templates

Not team-scoped—the same for every team. Filter by purpose. System templates are starters and must be duplicated into a team-owned template before transactional sending.

GET
/system-templates

Not team-scoped—the same for every team. Filter by purpose. System templates are starters and must be duplicated into a team-owned template before transactional sending.

x-sendlit-apikey<token>

In: header

Query Parameters

purpose?string

Immutable sending purpose. Marketing templates require a final managed footer; transactional templates are footer-free and are valid for POST /emails.

Value in"marketing" | "transactional"

Response Body

application/json

curl -X GET "https://api.sendlit.dev/system-templates"
{
  "items": [
    {
      "templateId": "string",
      "title": "string",
      "description": "string",
      "purpose": "marketing",
      "content": {
        "style": {
          "property1": null,
          "property2": null
        },
        "meta": {
          "property1": null,
          "property2": null
        },
        "content": [
          {
            "property1": null,
            "property2": null
          }
        ]
      },
      "requiredVariables": [
        "string"
      ],
      "variableDefinitions": [
        {
          "path": "string",
          "description": "string",
          "examples": null
        }
      ]
    }
  ]
}