> ## 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 Email by ID

> Get Single Email



## OpenAPI

````yaml get /emails/{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:
  /emails/{id}:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
        example: c6c0ed0b-4b67-410d-b58c-c74490eda5db
    get:
      tags:
        - Email
      summary: Get Email by ID
      description: Get Single Email
      operationId: emails.show
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/EmailSent'
        default:
          $ref: '#/components/responses/errors.404'
components:
  schemas:
    EmailSent:
      required:
        - from
        - to
        - subject
        - html
      properties:
        id:
          description: UUID of the domain in the system
          format: uuid
          type: string
          readOnly: true
          example: b722edc1-7ad4-4845-9fa5-e4c4f2a923d4
        from:
          type: string
          example: contact@contoso.com
        to:
          type: string
          example: recipient@contoso.com
        subject:
          type: string
          example: Hello, World!
        html:
          type: string
          nullable: true
        text:
          type: string
          nullable: true
        created_at:
          description: The date the subscriber was created
          format: date-time
          type: string
          readOnly: true
          example: '2022-10-12T18:57:23.000000Z'
  responses:
    errors.404:
      description: Not Found

````