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

# Get Template by ID

> Get Single templates



## OpenAPI

````yaml get /templates/{id}
openapi: 3.0.2
info:
  title: DeliveryKey API Specification
  description: API documentation for DeliveryKey endpoints
  version: v1
  x-logo:
    url: http://app.deliverykey.local/images/deliveryRoundDocs.png
    backgroundColor: '#F4F4F6'
    padding: 5px
    altText: DeliveryKey Logo
servers:
  - url: https://api.deliverykey.com/v1
security: []
tags:
  - name: Account
    description: Current Account
  - name: Domain
    description: Domains
    x-displayName: Domain
  - name: Template
    description: Templates
    x-displayName: Template
  - name: Webhook
    description: Webhooks
    x-displayName: Webhook
  - name: Email
    description: Emails
    x-displayName: Email
paths:
  /templates/{id}:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
        example: 2977a054-9c3c-44a8-85e4-c852665f0d05
    get:
      tags:
        - Template
      summary: Get Template by ID
      description: Get Single templates
      operationId: templates.show
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Template'
        default:
          $ref: '#/components/responses/errors.404'
components:
  schemas:
    Template:
      required:
        - name
      properties:
        id:
          description: UUID of the domain in the system
          format: uuid
          type: string
          readOnly: true
          example: 4c37416c-8388-4426-9f74-29725b06a8de
        name:
          type: string
          example: auto reply template
        created_at:
          description: The date the subscriber was created
          format: date-time
          type: string
          example: '2022-10-12T18:57:23.000000Z'
  responses:
    errors.404:
      description: Not Found

````