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

# Get batch status

> Poll a batch verification request.

The request is visible only to the account identified by the pasted `X-Api-Key`.

Do not treat a partial request as a complete export. Wait for `request.finalized: true`, then retrieve every results page.

Use the returned counters for progress reporting. Keep polling frequency bounded, surface an operational timeout to the caller, and retain the correlation ID when a job stops advancing. A terminal response describes the batch as a whole; individual decisions remain on the results endpoint.


## OpenAPI

````yaml GET /v1/requests/{id}
openapi: 3.1.0
info:
  title: Bounceless API
  version: '1'
  description: >-
    GA single and batch email verification. Unknown outcomes are not billed and
    credits never expire.
  x-bounceless-presend-contract-version: 1
  x-bounceless-compatibility: >-
    Legacy sibling fields remain available during the Pre-Send v1 compatibility
    window.
servers:
  - url: https://api.bounceless.io
security:
  - apiKey: []
  - bearerAuth: []
paths:
  /v1/requests/{id}:
    get:
      summary: Get a batch verification request.
      parameters:
        - $ref: '#/components/parameters/RequestId'
      responses:
        '200':
          description: Request status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchRequest'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Limited'
components:
  parameters:
    RequestId:
      name: id
      in: path
      required: true
      schema:
        type: string
        format: uuid
  schemas:
    BatchRequest:
      type: object
      required:
        - request
        - counters
        - requestId
      properties:
        request:
          $ref: '#/components/schemas/RequestDescriptor'
        counters:
          $ref: '#/components/schemas/Counters'
        replayed:
          type: boolean
        requestId:
          type: string
    RequestDescriptor:
      type: object
      required:
        - id
        - mode
        - state
        - createdAt
        - partial
        - finalized
        - countsMayChange
      properties:
        id:
          type: string
          format: uuid
        mode:
          type: string
        state:
          type: string
        errorCode:
          type:
            - string
            - 'null'
        retentionExpiresAt:
          type:
            - string
            - 'null'
          format: date-time
        createdAt:
          type: string
          format: date-time
        partial:
          type: boolean
        finalized:
          type: boolean
        countsMayChange:
          type: boolean
        finalization:
          type:
            - object
            - 'null'
    Counters:
      type: object
      additionalProperties:
        type: integer
        minimum: 0
    Error:
      type: object
      required:
        - error
      additionalProperties: false
      properties:
        error:
          type: object
          required:
            - code
            - message
            - requestId
          additionalProperties: false
          properties:
            code:
              type: string
            message:
              type: string
            requestId:
              type: string
  responses:
    Error:
      description: Error response.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/RequestId'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Limited:
      description: Rate limit exceeded.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/RequestId'
        Retry-After:
          description: Seconds before retrying
          schema:
            type: integer
            minimum: 1
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  headers:
    RequestId:
      description: Request correlation identifier.
      schema:
        type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Canonical authentication. Send a Bounceless key in blc.… format.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Bounceless API key
      description: Compatibility authentication. New integrations should use X-Api-Key.

````