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

# Get List Results

> Retrieve the verification results for a completed deliverable list. Results are paginated — pass `page` and `limit` as query parameters to control which slice of data you receive.

To retrieve all results, start at page 1 and keep incrementing the page number until `metadata.has_more` is `false`.

**Example pagination loop:**

1. `GET /validate/deliverable/{listId}/results?page=1&limit=100`
2. Check `metadata.has_more` in the response.
3. If `true`, request the next page: `?page=2&limit=100`
4. Repeat until `has_more` is `false`.




## OpenAPI

````yaml api-reference/openapi.yaml get /deliverable/{listId}/results
openapi: 3.0.3
info:
  title: OmniVerifier Public API
  description: Public API for email verification and credit management
  version: 1.0.0
  contact:
    name: OmniVerifier Support
    email: support@omniverifier.com
servers:
  - url: https://api.omniverifier.com/v1/validate
    description: API Server
security:
  - ApiKeyAuth: []
paths:
  /deliverable/{listId}/results:
    get:
      tags:
        - Deliverable Verification
      summary: Get deliverable list results
      description: >
        Retrieve the verification results for a completed deliverable list.
        Results are paginated — pass `page` and `limit` as query parameters to
        control which slice of data you receive.


        To retrieve all results, start at page 1 and keep incrementing the page
        number until `metadata.has_more` is `false`.


        **Example pagination loop:**


        1. `GET /validate/deliverable/{listId}/results?page=1&limit=100`

        2. Check `metadata.has_more` in the response.

        3. If `true`, request the next page: `?page=2&limit=100`

        4. Repeat until `has_more` is `false`.
      operationId: getDeliverableListResults
      parameters:
        - name: listId
          in: path
          required: true
          schema:
            type: string
          description: List ID
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
          description: Page number for paginated results.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 100
          description: Maximum number of results to return per page.
      responses:
        '200':
          description: Successfully retrieved list results
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/EmailResult'
                  metadata:
                    type: object
                    properties:
                      total_pages:
                        type: integer
                        description: Total number of pages available
                        example: 13
                      total_count:
                        type: integer
                        description: Total number of results across all pages
                        example: 1250
                      has_more:
                        type: boolean
                        description: Whether there are more pages of results
                        example: true
        '404':
          description: List not found
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    EmailResult:
      type: object
      properties:
        email:
          type: string
          format: email
          description: Email address
          example: user@example.com
        status:
          type: string
          enum:
            - valid
            - invalid
            - catch-all
          description: Email validation status
          example: valid
        mail_server:
          type: string
          description: Mail server information
          example: outlook.com
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
          example: Invalid API key
        code:
          type: string
          description: Error code
          example: INVALID_API_KEY
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication

````