---
title: "List Sequence Templates"
method: GET
path: "/v1/sequence-templates"
tags: ["sequence-templates"]
---

# List Sequence Templates

`GET /v1/sequence-templates`

List the sequence templates available in the workspace.

Requires the `sequences:read` scope on the API key.

## Query parameters

- `page` integer — Page number.
- `size` integer — Number of items per page.
- `sort_by` 'created_at' | 'updated_at' | 'name'
- `sort_order` 'asc' | 'desc'
- `name` string, nullable — Filter by template name (exact match).
- `status` 'PENDING_SETUP' | 'ACTIVE' | 'INACTIVE' | 'FINISHING' | 'ARCHIVED'
- `created_at_before` string, date-time, nullable — Return templates created strictly before this timestamp.
- `created_at_after` string, date-time, nullable — Return templates created strictly after this timestamp.

## Response `200`

Successful Response

- PublicPaginationEnvelopeSequenceTemplatePublicOutput
  - `items` SequenceTemplatePublicOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier.
    - `name` string, nullable, required — Name of the template.
    - `summary` string, nullable, required — Short description of what the template is for.
    - `status` 'PENDING_SETUP' | 'ACTIVE' | 'INACTIVE' | 'FINISHING' | 'ARCHIVED', required
    - `step_count` integer, required — Number of steps configured on the template.
    - `language` string, nullable, required — BCP-47 language tag the template was authored in.
    - `timezone` string, required — IANA timezone the template's send-window rules are evaluated in.
    - `activated_at` string, date-time, nullable, required — When the template was first activated.
    - `created_at` string, date-time, required — When the template was created.
    - `updated_at` string, date-time, required — When the template last changed.
  - `total_count` integer, required — Total number of records matching the query.
  - `total_pages` integer, required — Total number of pages.
  - `has_more` boolean, required — Whether more pages remain after the current one.

---

[API](https://skmtc.net/topo/apis/topo-public-api.md) · [All operations](https://skmtc.net/topo/apis/topo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/topo/topo-public-api/revisions/80f4fd40b75e/schema)
