# Get availability of multiple domain names.

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v2/domains/available-bulk:
    post:
      summary: Get availability of multiple domain names.
      deprecated: false
      description: >-
        This endpoint allows you to check the availability of up to 20 domain
        names in a single request. This is ideal for bulk domain searches,
        letting you quickly determine which domains are available for
        registration and their corresponding prices for the specified number of
        years.


        Rate Limit: 10 requests every 30 minutes per client.
      tags:
        - domains
      parameters:
        - name: x-auth-zapmail
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: x-workspace-key
          in: header
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: x-service-provider
          in: header
          description: ''
          required: false
          example: ''
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                domainNames:
                  type: string
                  description: >-
                    The list of domain names you want to check for
                    availability. 
              x-apidog-orders:
                - domainNames
              required:
                - domainNames
            example:
              domainNames:
                - example.com
                - example1.com
                - example2.com
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      domains:
                        type: array
                        items:
                          type: object
                          properties:
                            domainName:
                              type: string
                            status:
                              type: string
                            isPremiumDomain:
                              type: boolean
                            domainPrice:
                              type: string
                            renewPrice:
                              type: string
                          required:
                            - domainName
                            - status
                            - isPremiumDomain
                            - domainPrice
                            - renewPrice
                          x-apidog-orders:
                            - domainName
                            - status
                            - isPremiumDomain
                            - domainPrice
                            - renewPrice
                      total:
                        type: integer
                      available:
                        type: integer
                      unavailable:
                        type: integer
                    required:
                      - domains
                      - total
                      - available
                      - unavailable
                    x-apidog-orders:
                      - domains
                      - total
                      - available
                      - unavailable
                  01K7KVK04A7S2KA491J9KXRNVR:
                    type: string
                required:
                  - status
                  - message
                  - data
                  - 01K7KVK04A7S2KA491J9KXRNVR
                x-apidog-orders:
                  - status
                  - message
                  - data
                  - 01K7KVK04A7S2KA491J9KXRNVR
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: domains
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/797058/apis/api-22701420-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.zapmail.ai/api
    description: Prod Env
security: []

```
