> ## 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 Templates

> List email templates

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

## Request

<ParamField query="label" type="string">
  Optional label name filter. Only templates assigned this label are returned.
</ParamField>

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/templates?label=edm" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "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": []
      }
    ]
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
