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

# Verify a list of emails

> Submits a list of emails for bulk verification.



## OpenAPI

````yaml POST /lists/verify
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.mailerfuse.com
security:
  - bearerAuth: []
paths:
  /lists/verify:
    post:
      summary: Verify a list of emails
      description: Submits a list of emails for bulk verification.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                emails:
                  type: array
                  items:
                    type: string
                    format: email
                  example:
                    - test@example.com
                    - user@domain.com
              required:
                - emails
      responses:
        '200':
          description: Bulk email verification started successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  list_id:
                    type: string
                    example: 123e4567-e89b-12d3-a456-426614174000
        '400':
          description: Bad request (missing required fields)
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Missing required fields
        '401':
          description: Unauthorized (API key missing or invalid)
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: API key is missing
        '403':
          description: Forbidden (Insufficient credits)
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Not enough credits
                  error_code:
                    type: string
                    example: INSUFFICIENT_CREDITS
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Database connection failed
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````