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

# List/Search emails

> Get List of Emails Sent



## OpenAPI

````yaml get /emails
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:
    get:
      tags:
        - Email
      summary: List/Search emails
      description: Get List of Emails Sent
      operationId: emails.index
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/EmailSent'
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'

````