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

# Get domains

> Retrieves a list of domains associated with the user or organization



## OpenAPI

````yaml /openapi.json get /outbound/domains
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /outbound/domains:
    get:
      tags:
        - Outbound
      summary: Get domains
      description: Retrieves a list of domains associated with the user or organization
      responses:
        '200':
          description: Successfully retrieved domains
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  domains:
                    type: array
                    items:
                      type: object
                      properties:
                        uuid:
                          type: string
                          description: Unique identifier for the domain
                          example: 550e8400-e29b-41d4-a716-446655440000
                        domain:
                          type: string
                          description: Domain name
                          example: example.com
                        status:
                          type: string
                          enum:
                            - inactive
                            - active
                            - disabled
                            - unknown
                          description: Current status of the domain
                          example: active
                        created_date:
                          type: integer
                          description: Creation timestamp in seconds
                          example: 1735689600
                        last_modified:
                          type: integer
                          description: Last modification timestamp in seconds
                          example: 1735689600
                        dns:
                          type: object
                          properties:
                            dkim:
                              type: object
                              properties:
                                host:
                                  type: string
                                  description: DKIM record hostname
                                  example: jetemail._domainkey.example.com
                                value:
                                  type: string
                                  description: DKIM record value
                                  example: dkim.jetsmtp.net
                                verified:
                                  type: boolean
                                  description: Whether the DKIM record is verified
                                  example: true
                            spf:
                              type: object
                              properties:
                                host:
                                  type: string
                                  description: SPF CNAME record hostname
                                  example: em12345.example.com
                                value:
                                  type: string
                                  description: SPF CNAME record target
                                  example: return.jetsmtp.net
                                type:
                                  type: string
                                  description: DNS record type
                                  example: CNAME
                                verified:
                                  type: boolean
                                  description: Whether the SPF record is verified
                                  example: true
                            dmarc:
                              type: object
                              properties:
                                host:
                                  type: string
                                  description: DMARC record hostname
                                  example: _dmarc.example.com
                                value:
                                  type: string
                                  description: DMARC record value
                                  example: v=DMARC1; p=none
                                verified:
                                  type: boolean
                                  description: Whether the DMARC record is verified
                                  example: true
                            tracking:
                              type: object
                              description: >-
                                Optional tracking CNAME. Present only when
                                tracking_domain is set on the domain.
                              properties:
                                host:
                                  type: string
                                  example: links.example.com
                                value:
                                  type: string
                                  example: link-us.jete.ml
                                type:
                                  type: string
                                  example: CNAME
                                required:
                                  type: boolean
                                  example: false
                                verified:
                                  type: boolean
                                  example: true
        '401':
          description: Unauthorized - User not authenticated
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: User information not found
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Failed to fetch domains
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````