---
title: "List sequence emails"
method: GET
path: "/v4/sequences/{sequence_id}/emails"
tags: ["Sequence Emails"]
---

# List sequence emails

`GET /v4/sequences/{sequence_id}/emails`

Returns every email inside a sequence, ordered by `position` (the order subscribers receive them). Each entry carries timing (`delay_value`, `delay_unit`, `send_days`), publish state (`published`), and metadata (`subject`, `preview_text`, `email_template_id`).

**Tip:** the heavier `content` field is omitted by default to keep responses fast on sequences with many emails. Pass `include_content=true` when you need the body — for example, to render a preview, audit Liquid usage, or sync an external draft.

For the field semantics — particularly how `delay_unit` and `send_days` interact, and what happens when subscribers hit a `published: false` email — see [Create a sequence email](/api-reference/sequence-emails/create-a-sequence-email).

## Path parameters

- `sequence_id` integer, required

## Query parameters

- `after` unknown
- `before` unknown
- `include_content` unknown
- `include_total_count` boolean
- `per_page` unknown
- `include` string

## Response `200`

Returns a paginated list of all sequence emails for your account

- object
  - `emails` object[], required
    - `id` integer, required
    - `sequence_id` integer, required
    - `subject` string, required
    - `preview_text` string, required
    - `email_address` string, required
    - `email_template_id` unknown, required
    - `published` boolean, required
    - `position` integer, required
    - `delay_value` integer, required
    - `delay_unit` string, required
    - `send_days` string[], required
    - `stats` object — Returned only when `include` contains `stats`. Deliverability counts and rates for this email, matching the numbers shown on the sequence report. All fields are 0 when the email has no deliverability data.
      - `recipients` integer — Number of times this email was sent. Denominator for the rate fields.
      - `opens` integer — Number of sent emails that were opened.
      - `clicks` integer — Number of sent emails that had a link clicked.
      - `email_unsubscribes` integer — Number of unsubscribe events on this email (email-level events, not current subscription state).
      - `bounces` integer — Number of sent emails that bounced.
      - `complaints` integer — Number of sent emails that were marked as spam.
      - `open_rate` number — Percentage of sent emails that were opened.
      - `click_rate` number — Percentage of sent emails that had a link clicked.
      - `click_to_open_rate` number — Percentage of opened emails that had a link clicked.
      - `unsubscribe_rate` number — Percentage of sent emails that resulted in an unsubscribe.
      - `bounce_rate` number — Percentage of sent emails that bounced.
      - `complaint_rate` number — Percentage of sent emails marked as spam.
  - `pagination` object, required
    - `has_previous_page` boolean, required
    - `has_next_page` boolean, required
    - `start_cursor` string, required
    - `end_cursor` string, required
    - `per_page` integer, required

## Other responses

- `401` — Returns a 401 if the token and/or account cannot be authenticated
- `404` — Returns a 404 when the provided id does not exist

---

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