# GetApi Disposable Email Checker

> GetApi Disposable Email Checker is a paid API for AI agents from api.getapi.nl, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks whether a given email address uses a disposable (temporary/throwaway) email domain

## Facts

- Endpoint: POST https://api.getapi.nl/api/v1/validate/email/disposable
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/getapi-disposable-email-checker-d3d0ba1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7vPXcWAg3DrNzFdsC4yis

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability getapi-disposable-email-checker-d3d0ba1e -d '<json body>'
```

Example prompt: Can you check whether the email address user@mailnesia.com is a disposable or throwaway email, and tell me if I should block it from signing up?

## When to prefer this

Choose this endpoint when you need a fast, low-cost per-call check specifically for disposable/throwaway email domain detection. It is ideal for signup flows, lead validation pipelines, or fraud screening where you need a clear boolean flag about disposability. Prefer this over full email deliverability checks when you specifically want to block temporary email providers rather than validate SMTP reachability.

## Known failure modes

- Invalid or missing email field returns an error response
- Unknown or newly created disposable domains may not yet be in the blocklist and return disposable=false
- Malformed email strings may cause unexpected behavior
- Network timeouts may occur under high load

## How this service works

Ontdek, test en integreer krachtige API&#039;s voor web scraping, e-mailvalidatie, geolocatie
    en meer. Gratis starten.

## Output

Returns a JSON object containing the original email address, the extracted domain, a human-readable message explaining the result, and a boolean 'disposable' field indicating whether the domain is a known disposable/temporary email provider.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "email": "user@example.com",
  "domain": "example.com",
  "message": "This domain is not known as disposable.",
  "disposable": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/getapi-disposable-email-checker-d3d0ba1e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getapi.nl](https://www.zero.xyz/host/api.getapi.nl/llms.txt)
