> ## 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 a monitored DMARC domain



## OpenAPI

````yaml /openapi.json get /dmarc/domains/{uuid}
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: []
tags:
  - name: Email
    description: Send transactional email
  - name: Outbound
    description: 'Outbound sending: keys, SMTP users, domains, logs, suppression'
  - name: Inbound
    description: Inbound routing, domains and forward destinations
  - name: DMARC
    description: DMARC aggregate-report domain setup, DNS verification and analytics
  - name: Marketing
    description: >-
      Marketing suite: templates, audiences, contacts, broadcasts, themes,
      assets and signup forms
  - name: Signup Forms
    description: Hosted signup pages and form submissions
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /dmarc/domains/{uuid}:
    get:
      tags:
        - DMARC
      summary: Get a monitored DMARC domain
      parameters:
        - name: uuid
          in: path
          required: true
          description: DMARC domain registration UUID.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: DMARC domain retrieved successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - domain
                properties:
                  success:
                    type: boolean
                    example: true
                  domain:
                    $ref: '#/components/schemas/DmarcDomain'
        '400':
          description: Invalid domain UUID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
        '404':
          description: DMARC domain not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
        '500':
          description: Failed to load the DMARC domain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
components:
  schemas:
    DmarcDomain:
      type: object
      required:
        - uuid
        - domain
        - status
        - logLocation
        - ruaAddress
        - dns
        - verifiedAt
        - createdAt
        - updatedAt
      properties:
        uuid:
          type: string
          format: uuid
          example: b814c25d-b18c-4044-ae31-49e22ce908b5
        domain:
          type: string
          format: hostname
          example: example.com
        status:
          type: string
          enum:
            - pending
            - verified
            - disabled
          example: verified
        logLocation:
          type: string
          enum:
            - au
            - us
            - eu
          example: au
        ruaAddress:
          type: string
          format: email
          example: 5e2f617ea64848ab9073@rua.jetsmtp.net
        dns:
          $ref: '#/components/schemas/DmarcDnsConfiguration'
        verifiedAt:
          type: integer
          format: int64
          nullable: true
          description: Unix timestamp in seconds.
        createdAt:
          type: integer
          format: int64
          description: Unix timestamp in seconds.
        updatedAt:
          type: integer
          format: int64
          description: Unix timestamp in seconds.
    DmarcError:
      type: object
      required:
        - error
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: Invalid domain
        code:
          type: string
          example: invalid_domain
        details:
          type: string
    DmarcDnsConfiguration:
      type: object
      required:
        - host
        - type
        - value
        - verified
        - lastCheckedAt
      properties:
        host:
          type: string
          example: _dmarc.example.com
        type:
          type: string
          enum:
            - TXT
          example: TXT
        value:
          type: string
          example: v=DMARC1; p=none; rua=mailto:5e2f617ea64848ab9073@rua.jetsmtp.net
        verified:
          type: boolean
          example: true
        lastCheckedAt:
          type: integer
          format: int64
          nullable: true
          description: Unix timestamp in seconds, or null if DNS has not been checked.
          example: 1786248000
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````