> ## 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.

# Check Domain



## OpenAPI

````yaml api-reference/openapi.json get /domains/{id}/check
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/{id}/check:
    get:
      tags:
        - Domain
      summary: Check Domain
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
          description: ID of the domain
      responses:
        '200':
          description: Domain available
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Domain available
        '400':
          description: Domain does not exist
        '401':
          description: Unauthorized
        '500':
          description: Error checking domain
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````