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

# Get the status of a list

> Retrieves the verification status of a submitted email list.



## OpenAPI

````yaml GET /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:
    get:
      summary: Get the status of a verified email list
      description: Retrieves the verification status of a submitted email list.
      parameters:
        - name: id
          in: query
          required: true
          description: The ID of the list to retrieve the status for.
          schema:
            type: string
            example: 123e4567-e89b-12d3-a456-426614174000
      responses:
        '200':
          description: List status retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: processing
                  summary:
                    type: object
                    nullable: true
                    description: Summary of verification results (if available)
                    example:
                      deliverable: 80
                      risky: 10
                      undeliverable: 10
        '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
        '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

````