# Get email templates

**Summary:** Get the list of email templates in Subrite, with template type, locale and the MJML template source.

- Space: [Developers](https://www.subrite.no/developers)
- Source: https://www.subrite.no/developers/email-templates
- Updated: 2026-09-23
- Markdown index: https://www.subrite.no/developers/llms.txt

Get the email template list from Subrite.

- **Method:** `GET`
- **Route:** `{baseUrl}/api/v1/communications/email/list`
- **Authorization:** Bearer token (use the M2M token from [Setup](https://www.subrite.no/developers/email-setup?md=true))

<a id="success-response"></a>
## Success response

```javascript
[
  {
    id: 15,
    createdAt: '2025-02-27T10:52:11.226Z',
    metaData: null,
    name: 'Second Default Email Template (with unsubscribe)',
    templateType: 'emailStandard',
    communicationChannel: 'email',
    locale: 'en',
    template: '<mjml>...</mjml>',
  },
];
```
