Endpoint
Authentication
| Header | Required | Value |
|---|---|---|
X-API-Key | Yes | Your API key (bun_...) |
Overview
Detect disposable and temporary email addresses before they enter your system. Bunny maintains a continuously updated list of throwaway email providers and returns a simpleis_disposable: true/false boolean for any email domain you check.
Use cases
- Block fake signups and trial abuse
- Enforce real-email policies on registration forms
- Reduce bounce rates by filtering junk addresses
- Protect mailing lists from disposable addresses
Details
Detection is based on the domain, not the local part. Subdomains of known disposable providers are also flagged. The check is case-insensitive.Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | Yes | The email address to check |
Response
200 OK
| Field | Type | Description |
|---|---|---|
email | string | The email that was checked |
domain | string | Extracted domain |
is_disposable | boolean | true if the domain is disposable/temporary |

