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

# Get Bulk Verification

> Create the status of a bulk verification request.

## Overview

Retrieve the processing status and summary statistics of a bulk verification request.

This endpoint provides aggregated information about the bulk, including:

* Total number of submitted items
* Number of completed verifications
* Number of rejected items
* Number of failed items
* Number of items still in progress

## Bulk Status Values

* `accepted` – The bulk has been received and is queued for processing.
* `processing` – Items are currently being processed.
* `completed` – All items have reached a final state.

An item reaches a final state when its status is either:

* `completed`
* `failed`
* `rejected`

Use the bulk items endpoint to retrieve individual verification results.


## OpenAPI

````yaml GET /account-holder-verifications/bulk/{id}
openapi: 3.0.0
info:
  title: Ibantrack API
  description: IBAN account holder verification API
  version: 1.0.0
servers:
  - url: https://api.ibantrack.com/api-v1
    description: Production
security: []
paths:
  /account-holder-verifications/bulk/{id}:
    get:
      tags:
        - Account Holder Verifications
      summary: Get Bulk Status
      operationId: getBulkStatus
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Bulk status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkStatusResponse'
              example:
                id: c05acb57-40e7-4a2d-9368-d5ea8b27d413
                status: completed
                total_items: 250
                completed_items: 247
                failed_items: 1
                rejected_items: 2
                in_progress_items: 0
                created_at: '2026-02-16T18:14:15Z'
      security:
        - bearerAuth: []
components:
  schemas:
    BulkStatusResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - accepted
            - processing
            - completed
        total_items:
          type: integer
        completed_items:
          type: integer
        failed_items:
          type: integer
        in_progress_items:
          type: integer
        rejected_items:
          type: integer
        created_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````