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

# List Domains



## OpenAPI

````yaml api-reference/openapi.json get /domains
openapi: 3.0.0
info:
  title: OpenAPI Documentation Amisend
  version: 1.0.0
servers:
  - url: https://api.amisend.com
  - url: http://localhost:3015/api
security: []
tags: []
paths:
  /domains:
    get:
      tags:
        - Domain
      summary: List Domains
      responses:
        '200':
          description: List of domains
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Domain'
        '401':
          description: Unauthorized
        '500':
          description: Error getting domains
      security:
        - bearerAuth: []
components:
  schemas:
    Domain:
      type: object
      properties:
        _id:
          type: string
        name:
          type: string
        team:
          type: string
        user:
          type: string
        status:
          type: string
        ses:
          type: object
          properties:
            verifyDomainToken:
              type: string
            dkmi:
              type: array
              items:
                type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````