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

# Get a sequence email

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



## OpenAPI

````yaml /api-reference/v4.json get /v4/sequences/{sequence_id}/emails/{id}
openapi: 3.0.3
info:
  title: Kit API
  version: '4.0'
servers:
  - url: https://api.kit.com
security: []
paths:
  /v4/sequences/{sequence_id}/emails/{id}:
    get:
      tags:
        - Sequence Emails
      summary: Get a sequence email
      description: >-
        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).
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
          example: 26
        - name: sequence_id
          in: path
          required: true
          schema:
            type: integer
          example: 129
      responses:
        '200':
          description: Returns the sequence email details
          content:
            application/json:
              schema:
                type: object
                properties:
                  email:
                    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
                      content:
                        type: string
                    required:
                      - id
                      - sequence_id
                      - subject
                      - preview_text
                      - email_address
                      - email_template_id
                      - published
                      - position
                      - delay_value
                      - delay_unit
                      - send_days
                      - content
                required:
                  - email
              example:
                email:
                  id: 24
                  sequence_id: 127
                  subject: Welcome email
                  preview_text: Thanks for signing up
                  email_address: joe2458@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
                  content: <p>Welcome!</p>
        '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

````