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

# Get Template

> Retrieve a single email template by its slug. If `project_id` is not provided, the template will be looked up in the team's default project.

Retrieves the full details of a template by its slug, including the active version's HTML or JSON content, version count, and merge tag information.

Use the `project_id` query parameter if you have templates with the same slug across different projects.


## OpenAPI

````yaml GET /templates/{slug}
openapi: 3.1.0
info:
  title: Lettr API
  version: 1.0.0
  description: >-
    Lettr Email API - Send transactional emails with tracking, attachments, and
    personalization.
  contact:
    name: Lettr Support
    url: https://lettr.com
  license:
    name: Proprietary
    url: https://lettr.com/terms
servers:
  - url: https://app.lettr.com/api
    description: Production
security: []
tags:
  - name: Emails
    description: Email sending operations
  - name: Templates
    description: Email template management operations
  - name: Domains
    description: Domain management operations
  - name: Webhooks
    description: Webhook management operations
  - name: Audience
    description: 'Audience management: lists, contacts, topics, properties, and segments'
  - name: Campaigns
    description: >-
      Campaign operations: listing, stats, engagement events, and
      dispatch/scheduling
paths:
  /templates/{slug}:
    get:
      tags:
        - Templates
      summary: Get Template
      description: >-
        Retrieve a single email template by its slug. If `project_id` is not
        provided, the template will be looked up in the team's default project.
      operationId: getTemplate
      parameters:
        - name: slug
          in: path
          required: true
          description: The template slug (URL-friendly identifier)
          schema:
            type: string
            example: welcome-email
        - name: project_id
          in: query
          description: >-
            Project ID to retrieve the template from. If not provided, uses the
            team's default project.
          schema:
            type: integer
            minimum: 1
      responses:
        '200':
          description: Template retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShowTemplateResponse'
              example:
                message: Template retrieved successfully.
                data:
                  id: 1
                  name: Welcome Email
                  slug: welcome-email
                  project_id: 5
                  folder_id: 10
                  active_version: 2
                  versions_count: 3
                  created_at: '2025-01-15T10:00:00+00:00'
                  updated_at: '2025-01-20T14:30:00+00:00'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          description: Template or project not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                template_not_found:
                  summary: Template not found
                  value:
                    message: Template with slug 'welcome-email' was not found.
                    error_code: not_found
                project_not_found:
                  summary: Project not found
                  value:
                    message: >-
                      Project with ID '123' was not found or you don't have
                      access to it.
                    error_code: not_found
                no_default_project:
                  summary: No default project configured
                  value:
                    message: No default project is configured for this team.
                    error_code: not_found
        '422':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
              example:
                message: Validation failed.
                error_code: validation_error
                errors:
                  project_id:
                    - The project_id parameter must be an integer.
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                message: Failed to retrieve template. Please try again later.
                error_code: send_error
      security:
        - bearerAuth: []
components:
  schemas:
    ShowTemplateResponse:
      type: object
      description: Response containing a single template with details
      required:
        - message
        - data
      properties:
        message:
          type: string
          description: Human-readable response message
          example: Template retrieved successfully.
        data:
          $ref: '#/components/schemas/TemplateDetailView'
    ErrorResponse:
      type: object
      required:
        - message
        - error_code
      description: Error response for non-validation errors (400, 409, 500, 502).
      properties:
        message:
          type: string
          description: Human-readable error message
          example: The sender domain could not be determined from the email address.
        error_code:
          $ref: '#/components/schemas/ErrorCode'
    ValidationErrorResponse:
      type: object
      required:
        - message
        - error_code
        - errors
      properties:
        message:
          type: string
          description: Human-readable error message
          example: Validation failed.
        error_code:
          type: string
          description: Error code (always `validation_error` for 422 responses)
          const: validation_error
          example: validation_error
        errors:
          type: object
          description: Field-specific validation errors
          additionalProperties:
            type: array
            items:
              type: string
          example:
            from:
              - The sender email address is required.
            to:
              - At least one recipient email address is required.
    TemplateDetailView:
      type: object
      description: Detailed view of an email template
      required:
        - id
        - name
        - slug
        - project_id
        - folder_id
        - active_version
        - versions_count
        - created_at
        - updated_at
      properties:
        id:
          type: integer
          description: Unique identifier for the template
          example: 1
        name:
          type: string
          description: Name of the template
          example: Welcome Email
        slug:
          type: string
          description: URL-friendly identifier for the template
          example: welcome-email
        project_id:
          type: integer
          description: ID of the project containing this template
          example: 5
        folder_id:
          type: integer
          description: ID of the folder containing this template
          example: 10
        active_version:
          type:
            - integer
            - 'null'
          description: >-
            Version number of the currently active template version, or null if
            no version is active
          example: 2
        versions_count:
          type: integer
          minimum: 0
          description: Total number of versions for this template
          example: 3
        html:
          type:
            - string
            - 'null'
          description: >-
            The HTML content of the active template version, or null if no
            active version exists
          example: <html><body><h1>Welcome!</h1></body></html>
        json:
          type:
            - string
            - 'null'
          description: >-
            The JSON definition of the active template version (for visual
            editor templates), or null if no active version exists or it's a
            custom HTML template
          example: '{"tagName":"mj-body","children":[...]}'
        created_at:
          type: string
          format: date-time
          description: When the template was created
          example: '2025-01-15T10:00:00+00:00'
        updated_at:
          type: string
          format: date-time
          description: When the template was last updated
          example: '2025-01-20T14:30:00+00:00'
    UnauthorizedResponse:
      type: object
      required:
        - message
      description: Error response for authentication failures (401).
      properties:
        message:
          type: string
          description: Human-readable error message
          example: API key is required.
    ErrorCode:
      type: string
      description: >-
        Error codes returned by the API.


        | Code | HTTP Status | Description |

        |------|-------------|-------------|

        | `validation_error` | 422 | Request validation failed. Check the
        `errors` object for field-specific messages. |

        | `invalid_domain` | 400 | The sender domain could not be determined
        from the email address. |

        | `unconfigured_domain` | 400 | The sender domain is not configured or
        approved for sending. |

        | `send_error` | 400, 500 | General error during email send preparation
        or domain registration. |

        | `retrieval_error` | 400, 500 | Failed to retrieve resources (e.g.,
        sandbox key without associated user, upstream error). |

        | `transmission_failed` | 502 | Email transmission to the upstream
        provider failed. |

        | `resource_already_exists` | 409 | The resource (e.g., domain) already
        exists. |

        | `not_found` | 404 | The specified resource was not found. |

        | `template_not_found` | 404 | The specified template, project, or
        template version was not found. |

        | `insufficient_scope` | 403 | The API key does not have the required
        scope for this endpoint. |

        | `schedule_cancellation_failed` | 409, 500 | Could not cancel the
        scheduled transmission (already sent or upstream error). |

        | `quota_exceeded` | 429 | Monthly sending quota exceeded. Upgrade your
        plan to continue sending. |

        | `daily_quota_exceeded` | 429 | Daily sending quota exceeded. Try again
        tomorrow. |

        | `campaign_not_sendable` | 422 | The campaign cannot be sent in its
        current state (not a draft, or missing subject/sender/content). |

        | `campaign_not_scheduled` | 422 | The campaign is not scheduled, so it
        cannot be unscheduled. |
      enum:
        - validation_error
        - invalid_domain
        - unconfigured_domain
        - send_error
        - retrieval_error
        - transmission_failed
        - resource_already_exists
        - not_found
        - template_not_found
        - insufficient_scope
        - schedule_cancellation_failed
        - quota_exceeded
        - daily_quota_exceeded
        - campaign_not_sendable
        - campaign_not_scheduled
      example: invalid_domain
  responses:
    UnauthorizedError:
      description: Unauthorized - Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UnauthorizedResponse'
          examples:
            missing_key:
              summary: Missing API key
              value:
                message: API key is required.
            invalid_key:
              summary: Invalid API key
              value:
                message: Invalid API key.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key for authentication

````