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

# Get Bulk File Status

> Returns the processing status of a bulk verification file using its `file_id`. If processing is complete, a signed download URL for the results CSV is also returned. The URL expires after 1 hour.



## OpenAPI

````yaml POST /verify/bulk/status
openapi: 3.1.0
info:
  title: Deliverable Docs API
  description: API for email verification and task status.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.deliverable.co/gateway
security:
  - apiKeyAuth: []
paths:
  /verify/bulk/status:
    post:
      summary: Get Bulk File Status & Download URL
      description: >-
        Returns the processing status of a bulk verification file using its
        `file_id`. If processing is complete, a signed download URL for the
        results CSV is also returned. The URL expires after 1 hour.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetBulkFileStatusRequest'
      responses:
        '200':
          description: File status returned — either pending or completed with download URL
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/BulkFileStatusPendingResponse'
                    title: Pending
                  - $ref: '#/components/schemas/BulkFileStatusCompletedResponse'
                    title: Completed
        '400':
          description: File ID is missing or invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Subscription expired or payment required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    GetBulkFileStatusRequest:
      type: object
      required:
        - file_id
      properties:
        file_id:
          type: string
          description: File ID returned from /verify/bulk
          example: file_abc123xyz
    BulkFileStatusPendingResponse:
      type: object
      properties:
        message:
          allOf:
            - $ref: '#/components/schemas/MessageEnvelope'
            - properties:
                description:
                  example: File status fetched successfully
        data:
          type: object
          properties:
            status:
              type: string
              enum:
                - pending
              example: pending
            download_url:
              type: string
              description: Empty string when file is still processing
              example: ''
    BulkFileStatusCompletedResponse:
      type: object
      properties:
        message:
          allOf:
            - $ref: '#/components/schemas/MessageEnvelope'
            - properties:
                description:
                  example: File status fetched successfully
        data:
          type: object
          properties:
            status:
              type: string
              enum:
                - completed
              example: completed
            download_url:
              type: string
              format: uri
              description: Signed URL to download the results CSV. Expires after 1 hour.
              example: https://storage.example.com/results/file_abc123xyz.csv?token=...
    Error:
      type: object
      properties:
        error:
          type: integer
          format: int32
          example: 400
        message:
          type: string
          example: Invalid request body
    MessageEnvelope:
      type: object
      properties:
        status:
          type: string
          example: success
        statusCode:
          type: integer
          example: 200
        description:
          type: string
          example: Operation completed successfully
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Pass your API key in the x-api-key header.

````