Skip to main content
GET
/
api
/
v1
/
templates
List Templates
curl --request GET \
  --url https://api.sequenzy.com/api/v1/templates \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "companyId": "company_abc123",
  "emailLocalizationConfig": {
    "enabled": false,
    "locales": []
  },
  "templates": [
    {
      "id": "email_abc123",
      "name": "[Template] Welcome",
      "subject": "Welcome!",
      "previewText": null,
      "labels": ["edm"],
      "createdAt": "2026-05-01T10:30:00Z",
      "updatedAt": "2026-05-01T10:30:00Z",
      "localizations": []
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

List saved email templates for the authenticated company. You can filter by label.

Request

label
string
Optional label name filter. Only templates assigned this label are returned.
curl "https://api.sequenzy.com/api/v1/templates?label=edm" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "companyId": "company_abc123",
  "emailLocalizationConfig": {
    "enabled": false,
    "locales": []
  },
  "templates": [
    {
      "id": "email_abc123",
      "name": "[Template] Welcome",
      "subject": "Welcome!",
      "previewText": null,
      "labels": ["edm"],
      "createdAt": "2026-05-01T10:30:00Z",
      "updatedAt": "2026-05-01T10:30:00Z",
      "localizations": []
    }
  ]
}