DeBounce Bulk API

Asynchronous bulk email list validation on bulk.debounce.io. Submit the URL of a hosted CSV or TXT list for processing, receive a list_id, then poll the status endpoint for the processing percentage and the completed download link. One active bulk job is permitted per account; additional jobs queue.

Operations 2

GET /v1/upload/ Perform bulk email validation #
GET /v1/status/ Check bulk validation status #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/debounce-bulk-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

debounce-bulk-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DeBounce Email Validation Bulk API
  description: 'DeBounce is an email validation and verification REST API. Requests are authenticated with an API key passed as the "api" query parameter; every response carries a "success" flag and a "debounce" object holding the result or the error. This document covers asynchronous bulk list validation on bulk.debounce.io: submitting a hosted CSV/TXT list URL for processing and polling the resulting list_id for status and the completed download link.'
  license:
    name: MIT
  version: 1.0.0
  contact:
    name: DeBounce Support
    url: https://developers.debounce.com/
  termsOfService: https://debounce.com/terms-of-use/
servers:
- url: https://bulk.debounce.io
security:
- ApiKeyQuery: []
tags:
- name: Bulk
  description: Bulk email list upload and status polling
paths:
  /v1/upload/:
    get:
      summary: Perform bulk email validation
      description: Perform a bulk email validation request via API.
      operationId: uploadBulkList
      parameters:
      - name: api
        in: query
        description: Your DeBounce API key
        required: true
        schema:
          type: string
      - name: url
        in: query
        description: URL of your .csv or .txt email list, starting with https and uploaded in your server.
        required: true
        schema:
          type: string
          format: uri
      responses:
        '200':
          description: Bulk upload accepted and processing started
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkUploadResult'
              examples:
                success:
                  summary: Successful bulk validation upload
                  value:
                    debounce:
                      list_id: '8620'
                      list_name: test-list
                    success: '1'
                maxReqs-reached:
                  summary: Maximum bulk verify requests reached
                  value:
                    debounce:
                      error: You have reached the maximum number of API bulk verify requests. Please try after the existing request completes.
                    success: '0'
        '400':
          description: Bad request - Invalid URL or file format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                debounce:
                  error: URL parameter is not valid.
                success: '0'
        '401':
          description: Unauthorized - Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                debounce:
                  error: Wrong API
                  code: '0'
                success: '0'
        '402':
          description: Payment Required - Insufficient credits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                debounce:
                  error: You have exhausted your credits, please add additional credits to continue.
                success: '0'
        '429':
          description: Too Many Requests - Maximum concurrent calls reached
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                debounce:
                  error: Maximum concurrent calls reached
                success: '0'
      tags:
      - Bulk
  /v1/status/:
    get:
      summary: Check bulk validation status
      operationId: checkBulkStatus
      parameters:
      - name: list_id
        in: query
        description: The list ID returned from the upload request
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkStatusResult'
              examples:
                processing:
                  summary: List is currently being processed
                  value:
                    debounce:
                      list_id: '20664'
                      status: processing
                      percentage: 39
                      download_link: ''
                    success: '1'
                completed:
                  summary: Validation completed
                  value:
                    debounce:
                      list_id: '20664'
                      status: completed
                      percentage: 100
                      download_link: https://cdn.debounce.io/get/report/20664-5efwsdbsccsd.csv
                    success: '1'
                error:
                  summary: Invalid list ID
                  value:
                    debounce:
                      error: List ID is not valid.
                    success: '0'
      tags:
      - Bulk
components:
  schemas:
    Error:
      type: object
      required:
      - error
      properties:
        error:
          type: string
        message:
          type: string
        debounce:
          type: object
          properties:
            error:
              type: string
            code:
              type: string
        success:
          type: string
          enum:
          - '0'
    BulkUploadResult:
      type: object
      required:
      - success
      properties:
        debounce:
          type: object
          properties:
            list_id:
              description: Unique identifier for the uploaded list
              type: string
            list_name:
              description: Name of the uploaded list
              type: string
        success:
          description: Whether the upload was successful
          type: string
          enum:
          - '0'
          - '1'
    BulkStatusResult:
      type: object
      required:
      - success
      properties:
        debounce:
          type: object
          properties:
            list_id:
              description: Unique identifier for the list
              type: string
            status:
              description: Current processing status
              type: string
              enum:
              - processing
              - completed
            percentage:
              description: Processing completion percentage
              type: integer
              minimum: 0
              maximum: 100
            download_link:
              description: Download link for completed results
              type: string
              format: uri
        success:
          description: Whether the status request was successful
          type: string
          enum:
          - '0'
          - '1'
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api
      description: API key for authentication
x-apievangelist:
  method: searched
  generated: '2026-08-14'
  source: https://developers.debounce.com/api-reference/openapi-bulk.json
  note: Refined from the OpenAPI 3.1.0 document DeBounce publishes at the source URL above; verbatim copy in openapi/_original/. Operations retagged by product area, no content invented.