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

> Get List of Domains



## OpenAPI

````yaml get /domains
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:
  /domains:
    get:
      tags:
        - Domain
      summary: List/Search domains
      description: Get List of Domains
      operationId: domains.index
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Domain'
components:
  schemas:
    Domain:
      required:
        - domain
      properties:
        id:
          description: UUID of the domain in the system
          format: uuid
          type: string
          readOnly: true
          example: 27c6e6e1-0025-4c6e-843f-b2872985a28c
        domain:
          type: string
          example: mail.contoso.com
        active:
          type: boolean
        track_opens:
          default: false
          type: boolean
        track_clicks:
          default: false
          type: boolean
        created_at:
          description: The date the subscriber was created
          format: date-time
          type: string
          example: '2022-10-12T18:57:23.000000Z'
        emails_sent:
          type: number
          readOnly: true
        emails_received:
          type: number
          readOnly: true

````