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

# List Email Domains

> List sending domains registered to the authenticated company, ordered most-recently-updated first.



## OpenAPI

````yaml GET /email/domains/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /email/domains/:
    get:
      tags:
        - email
      summary: List Email Domains
      description: >-
        List sending domains registered to the authenticated company, ordered
        most-recently-updated first.
      operationId: email_domains_list
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EmailDomain'
          description: ''
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    EmailDomain:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        domain:
          type: string
          maxLength: 255
        status:
          $ref: '#/components/schemas/StatusA39Enum'
        dns_records: {}
        verification_details: {}
        is_default:
          type: boolean
        is_deleted:
          type: boolean
        verified_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
          readOnly: true
        company:
          type: string
          format: uuid
        connection:
          type: string
          format: uuid
          nullable: true
      required:
        - company
        - domain
        - id
        - updated_at
    StatusA39Enum:
      enum:
        - pending
        - verified
        - failed
      type: string
      description: |-
        * `pending` - Pending
        * `verified` - Verified
        * `failed` - Failed
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````