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

> Retrieve a page of batch verification results.

Use `cursor` and the returned `nextCursor` for new integrations. Treat cursors as opaque and continue until `nextCursor` is `null` after the request is finalized. `offset` remains available for compatibility.


## OpenAPI

````yaml GET /v1/requests/{id}/results
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}/results:
    get:
      summary: Get batch verification results.
      parameters:
        - $ref: '#/components/parameters/RequestId'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Cursor'
        - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: Paginated results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultsPage'
        '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
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 200
        default: 50
    Cursor:
      name: cursor
      in: query
      description: >-
        Opaque cursor returned as nextCursor by the preceding page. Canonical
        for new integrations.
      schema:
        type: string
        minLength: 1
    Offset:
      name: offset
      in: query
      deprecated: true
      description: >-
        Compatibility pagination. New integrations should use cursor and
        nextCursor.
      schema:
        type: integer
        minimum: 0
        default: 0
  schemas:
    ResultsPage:
      type: object
      required:
        - jobId
        - results
        - limit
        - offset
        - nextCursor
        - partial
        - finalized
        - countsMayChange
        - requestId
      properties:
        jobId:
          type: string
          format: uuid
        results:
          type: array
          items:
            $ref: '#/components/schemas/ResultItem'
        limit:
          type: integer
        offset:
          type: integer
        nextCursor:
          type:
            - string
            - 'null'
          description: >-
            Pass a non-null value back as cursor. Null marks the last current
            page; only a finalized request is a complete collection.
        partial:
          type: boolean
        finalized:
          type: boolean
        countsMayChange:
          type: boolean
          description: True only while the request can still change the result counters.
        requestId:
          type: string
    ResultItem:
      type: object
      properties:
        email:
          type: string
        checkedAt:
          type: string
          format: date-time
        state:
          type: string
        score:
          type:
            - number
            - 'null'
        subStatus:
          type:
            - string
            - 'null'
        reasonCodes:
          type:
            - array
            - 'null'
          items:
            type: string
        decision:
          type:
            - object
            - 'null'
        presend:
          $ref: '#/components/schemas/ClientDecisionEnvelopeV1'
    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
    ClientDecisionEnvelopeV1:
      type: object
      additionalProperties: false
      required:
        - contract_version
        - status
        - outcome
        - decision
        - verdict
        - provider_family
        - confidence
        - reasons
        - evidence_class
        - retry
        - billing
        - history
      properties:
        contract_version:
          type: integer
          const: 1
        status:
          type: string
          enum:
            - completed
            - running
            - recheck_scheduled
            - failed
            - rejected
        outcome:
          type: string
          enum:
            - actionable_verdict
            - pending
            - non_verdict
        decision:
          oneOf:
            - $ref: '#/components/schemas/PreSendDecision'
            - type: 'null'
        verdict:
          oneOf:
            - $ref: '#/components/schemas/PublicVerdict'
            - type: 'null'
        provider_family:
          type:
            - string
            - 'null'
        confidence:
          type:
            - number
            - 'null'
          minimum: 0
          maximum: 1
        reasons:
          type: array
          items:
            type: string
        evidence_class:
          type:
            - string
            - 'null'
        retry:
          oneOf:
            - $ref: '#/components/schemas/RetryWindow'
            - type: 'null'
        billing:
          $ref: '#/components/schemas/Billing'
        history:
          type:
            - object
            - 'null'
    PreSendDecision:
      type: string
      enum:
        - send
        - suppress
        - send_with_caution
        - enrich_first
        - recheck_later
        - manual_review
        - do_not_decide
    PublicVerdict:
      type: string
      enum:
        - DELIVERABLE
        - UNDELIVERABLE_NO_MAILBOX
        - UNDELIVERABLE_NO_MAIL_SERVER
        - UNDELIVERABLE_BOUNCED
        - CATCH_ALL
        - MAILBOX_FULL
        - DISPOSABLE
        - ROLE
        - SPAMTRAP
        - RISKY_SPAMTRAP
        - BLACKLISTED
        - GREYLISTED
        - TRANSIENT
        - UNKNOWN
        - UNKNOWN_WEBMAIL
    RetryWindow:
      type: object
      additionalProperties: false
      required:
        - eligible_at
        - expires_at
        - affinity_required
      properties:
        eligible_at:
          type: string
          format: date-time
        expires_at:
          type: string
          format: date-time
        affinity_required:
          type: boolean
    Billing:
      type: object
      additionalProperties: false
      required:
        - disposition
        - credits
      properties:
        disposition:
          type: string
          enum:
            - debited
            - held
            - released
        credits:
          type: integer
          minimum: 0
  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.

````