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

# Get a sequence email

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

Fetches a single sequence email by `id`. Unlike [List sequence emails](/api-reference/sequence-emails/list-sequence-emails), this endpoint **always returns the full `content`** — no `include_content` flag needed.

Use this when you have an email's `id` and need the current body, timing, or publish state — for example, to render a preview before pushing an update via [Update a sequence email](/api-reference/sequence-emails/update-a-sequence-email).

For the field semantics, see [Create a sequence email](/api-reference/sequence-emails/create-a-sequence-email).

## Path parameters

- `id` integer, required
- `sequence_id` integer, required

## Query parameters

- `include` string

## Response `200`

Returns the sequence email details

- object
  - `email` 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
    - `content` 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.

## 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)
