DeBounce Disposable Detector API

Free, unauthenticated disposable email detector on disposable.debounce.io. A single GET with an email address or domain returns whether it belongs to a known disposable or temporary email provider, checked against a continuously updated domain list. No API key and no credits are required.

Operations 1

GET / Check disposable email #

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-disposable-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-disposable-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DeBounce Email Detector Disposable API
  description: DeBounce's free disposable email detector. A single unauthenticated GET against disposable.debounce.io checks an email address or domain against a continuously updated list of disposable and temporary email providers.
  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://disposable.debounce.io
security: []
tags:
- name: Disposable
  description: Free disposable / temporary email domain detection
paths:
  /:
    get:
      summary: Check disposable email
      description: Free API as easy as hitting a URL. Check an email address against a real-time, up-to-date list of disposable domains.
      operationId: checkDisposableEmail
      security: []
      parameters:
      - name: email
        in: query
        description: The email address or domain to check
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Disposable email check completed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisposableResult'
              examples:
                example:
                  value:
                    disposable: 'true'
      tags:
      - Disposable
components:
  schemas:
    DisposableResult:
      type: object
      required:
      - disposable
      properties:
        disposable:
          description: Whether the email/domain is disposable
          type: string
x-apievangelist:
  method: searched
  generated: '2026-08-14'
  source: https://developers.debounce.com/api-reference/openapi-disposable.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.