---
title: "List all sequences"
method: GET
path: "/v3/sequences"
tags: ["Sequences"]
---

# List all sequences

`GET /v3/sequences`

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

Returns a paginated list of all sequences in your account.
Results are ordered by creation date, newest first, unless overridden with `sortBy` / `sortDirection`.

## Query parameters

- `top` integer
- `skip` integer
- `status` 'active' | 'paused' | 'new'
- `ownerUserId` integer
- `folderId` string, uuid
- `isArchived` boolean
- `name` string
- `createdAfter` string, date-time
- `sortBy` 'created' | 'name' | 'status'
- `sortDirection` 'asc' | 'desc'

## Response `200`

List of sequences retrieved successfully

- object — Response model for listing sequences with pagination
  - `items` object[] — Array of sequence items
    - `id` integer — Unique identifier for the sequence
    - `ownerUserId` integer — Identifier of the user who owns the sequence
    - `name` string — Name of the sequence
    - `created` string, date-time — Sequence creation timestamp with timezone offset
    - `status` 'new' | 'active' | 'paused' — Current status of the sequence
    - `isArchived` boolean — Indicates if the sequence is archived
    - `health` 'healthy' | 'stalled' | 'degraded' | 'blocked' — Overall health status of the sequence. Indicates whether the sequence can operate normally or has issues that need attention. - `healthy` — Sequence is functioning normally with no issues - `stalled` — Sequence has stalled and is not progressing - `degraded` — Sequence is running but with reduced effectiveness - `blocked` — Sequence cannot proceed due to critical issues
  - `hasMore` boolean — Indicates if there are more items to fetch

## Other responses

- `400` — Invalid pagination parameters, invalid sort parameters, or other business rejection
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks permission to view sequences
- `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)
