---
title: "Get a sequence"
method: GET
path: "/v4/sequences/{id}"
tags: ["Sequences"]
---

# Get a sequence

`GET /v4/sequences/{id}`

Fetches a single sequence by `id`. Use this when you need the current schedule, the `active` / `repeat` / `hold` flags, the configured `email_address` and `email_template_id`, or `exclude_subscriber_sources` for a known sequence — for example, to confirm settings before adding subscribers or to render an editor.

For the individual emails inside the sequence, use [List sequence emails](/api-reference/sequence-emails/list-sequence-emails). For the sequence model and field semantics, see [Create a sequence](/api-reference/sequences/create-a-sequence).

## Path parameters

- `id` integer, required

## Query parameters

- `include` string

## Response `200`

Returns the sequence details

- object
  - `sequence` object, required
    - `id` integer, required
    - `name` string, required
    - `hold` boolean, required
    - `repeat` boolean, required
    - `created_at` string, required
    - `updated_at` string, required
    - `email_address` unknown, required
    - `email_template_id` unknown, required
    - `send_days` string[], required
    - `send_hour` integer, required
    - `time_zone` string, required
    - `active` boolean, required
    - `exclude_subscriber_sources` unknown[], required
      - unknown
    - `email_count` integer
    - `subscriber_count` integer
    - `stats` object — Returned only when `include` contains `stats`. Performance stats matching the sequences dashboard. All deliverability fields (everything except `unsubscribers`) are null when the sequence has no deliverability data.
      - `unsubscribers` integer — Number of subscribers who have unsubscribed from (cancelled) this sequence. Reflects current subscription state (distinct from the email-event `email_unsubscribes` count).
      - `recipients` integer, nullable — Number of emails sent across the sequence. Denominator for the rate fields.
      - `opens` integer, nullable — Number of sent emails that were opened.
      - `clicks` integer, nullable — Number of sent emails that had a link clicked.
      - `email_unsubscribes` integer, nullable — Number of unsubscribe events on emails sent by this sequence (email-level events, not current subscription state).
      - `bounces` integer, nullable — Number of sent emails that bounced.
      - `complaints` integer, nullable — Number of sent emails that were marked as spam.
      - `open_rate` number, nullable — Percentage of sent emails that were opened.
      - `click_rate` number, nullable — Percentage of sent emails that had a link clicked.
      - `click_to_open_rate` number, nullable — Percentage of opened emails that had a link clicked.
      - `unsubscribe_rate` number, nullable — Percentage of sent emails that resulted in an unsubscribe.
      - `bounce_rate` number, nullable — Percentage of sent emails that bounced.
      - `complaint_rate` number, nullable — 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/versions/0df0c90d12da/schema)
