---
title: "List email templates"
method: GET
path: "/v3/email-templates"
tags: ["Email Templates"]
---

# List email templates

`GET /v3/email-templates`

<small>_Requires the `sequences:read` scope (or a broader one that includes it)._</small>

Returns a paginated list of email templates for the authenticated user.

## Query parameters

- `top` integer
- `skip` integer
- `name` string
- `folder_id` integer
- `folder_type` string
- `is_default` boolean

## Response `200`

Paginated list of email templates

- object
  - `items` object[]
    - `id` integer — Unique identifier for the email template
    - `name` string — Name of the email template
    - `subject` string, nullable — Email subject line
    - `body` string — HTML body of the email template
    - `folderId` integer, nullable — ID of the folder containing this template
    - `folderType` string, nullable — Type of the folder (e.g., "personal", "shared")
    - `attachments` object[] — List of attachments associated with the template
      - `id` integer — Unique identifier for the attachment
      - `fileName` string — Original file name of the attachment
      - `url` string — URL to download the attachment
      - `size` integer — File size in bytes
  - `hasMore` boolean — Whether more items are available beyond the current page

## Other responses

- `400` — Invalid pagination or filter parameters
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks required feature scope to view email templates
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/versions/1c3d32eaf95e/schema)
