> ## Documentation Index
> Fetch the complete documentation index at: https://developers.kit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List sequence 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).



## OpenAPI

````yaml /api-reference/v4.json get /v4/sequences/{sequence_id}/emails
openapi: 3.0.3
info:
  title: Kit API
  version: '4.0'
servers:
  - url: https://api.kit.com
security: []
paths:
  /v4/sequences/{sequence_id}/emails:
    get:
      tags:
        - Sequence Emails
      summary: List sequence emails
      description: >-
        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).
      parameters:
        - name: after
          description: To fetch next page of results, use `?after=<end_cursor>`
          in: query
          required: false
          schema:
            nullable: true
        - name: before
          description: To fetch previous page of results, use `?before=<start_cursor>`
          in: query
          required: false
          schema:
            nullable: true
        - name: include_content
          in: query
          required: false
          schema:
            nullable: true
          description: >-
            Pass `true` to include the `content` field on each email in the
            response. Omitted by default because it increases response size for
            large sequences.
        - name: include_total_count
          description: >-
            Set to `true` to include the `total_count` in the response. This
            option can cause slow responses; if paging through results, request
            it only on the first page and reuse the value for subsequent pages.
          in: query
          required: false
          schema:
            type: boolean
          example: false
        - name: per_page
          description: Number of results per page. Default 500, maximum 1000.
          in: query
          required: false
          schema:
            nullable: true
        - name: sequence_id
          in: path
          required: true
          schema:
            type: integer
          example: 108
      responses:
        '200':
          description: Returns a paginated list of all sequence emails for your account
          content:
            application/json:
              schema:
                type: object
                properties:
                  emails:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        sequence_id:
                          type: integer
                        subject:
                          type: string
                        preview_text:
                          type: string
                        email_address:
                          type: string
                        email_template_id:
                          nullable: true
                        published:
                          type: boolean
                        position:
                          type: integer
                        delay_value:
                          type: integer
                        delay_unit:
                          type: string
                        send_days:
                          type: array
                          items:
                            type: string
                      required:
                        - id
                        - sequence_id
                        - subject
                        - preview_text
                        - email_address
                        - email_template_id
                        - published
                        - position
                        - delay_value
                        - delay_unit
                        - send_days
                  pagination:
                    type: object
                    properties:
                      has_previous_page:
                        type: boolean
                      has_next_page:
                        type: boolean
                      start_cursor:
                        type: string
                      end_cursor:
                        type: string
                      per_page:
                        type: integer
                    required:
                      - has_previous_page
                      - has_next_page
                      - start_cursor
                      - end_cursor
                      - per_page
                required:
                  - emails
                  - pagination
              example:
                emails:
                  - id: 6
                    sequence_id: 107
                    subject: Welcome to the series
                    preview_text: Here's what to expect
                    email_address: joe2429@ck.lol
                    email_template_id: null
                    published: true
                    position: 0
                    delay_value: 0
                    delay_unit: days
                    send_days:
                      - monday
                      - tuesday
                      - wednesday
                      - thursday
                      - friday
                      - saturday
                      - sunday
                pagination:
                  has_previous_page: false
                  has_next_page: false
                  start_cursor: WzAsNl0=
                  end_cursor: WzAsNl0=
                  per_page: 500
        '401':
          description: Returns a 401 if the token and/or account cannot be authenticated
          content:
            application/json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      type: string
                required:
                  - errors
              example:
                errors:
                  - The access token is invalid
        '404':
          description: Returns a 404 when the provided id does not exist
          content:
            application/json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      type: string
                required:
                  - errors
              example:
                errors:
                  - Not Found
      security:
        - API Key: []
        - OAuth2: []
components:
  securitySchemes:
    API Key:
      description: Authenticate API requests via an API Key
      type: apiKey
      in: header
      name: X-Kit-Api-Key
    OAuth2:
      description: Authenticate API requests via an OAuth token
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://api.kit.com/v4/oauth/authorize
          tokenUrl: https://api.kit.com/v4/oauth/token
          refreshUrl: https://api.kit.com/v4/oauth/token
          scopes:
            read: Read access to Kit API v4
            write: Write access to Kit API v4

````