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

> Retrieves a list of inbound domains



## OpenAPI

````yaml /openapi.json get /inbound/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:
  /inbound/domains:
    get:
      tags:
        - Inbound
      summary: Get inbound domains
      description: Retrieves a list of inbound domains
      responses:
        '200':
          description: Successfully retrieved domains
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  result:
                    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
                        delivery_type:
                          type: string
                          enum:
                            - smtp
                            - webhook
                            - forward
                          description: How emails are delivered for this domain
                          example: smtp
                        status:
                          type: integer
                          enum:
                            - 0
                            - 1
                          description: Domain status (0 = inactive, 1 = active)
                          example: 1
                        last_modified:
                          type: integer
                          description: Last modification timestamp in seconds
                          example: 1735937552
                        created_at:
                          type: integer
                          description: Creation timestamp in seconds
                          example: 1735937552
        '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
        '404':
          description: No domains found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: No domains 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.

````