Disposable Email Post Check

Validate whether an email address uses a disposable domain

gabrielmoreira Updated 17 repo stars

File contents

Endpoint

POST https://requiems.xyz/v1/networking/disposable/check

Check Single Email

Validate whether an email address uses a disposable domain

Parameters

Name Type Required Location Description
email string yes body The email address to check

Request Example

{
  "email": "user@tempmail.com"
}

Response Example

{
  "data": {
    "email": "user@tempmail.com",
    "is_disposable": true,
    "domain": "tempmail.com"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}

Response Fields

Field Type Description
email string The email address that was checked
is_disposable boolean Whether the email uses a disposable domain
domain string The domain part of the email address

Errors

  • undefined 400 — The request body is missing or malformed
  • undefined 400 — The email address format is invalid

gabrielmoreira/agent-skills-mirror/tree/main/mirrors/repos/bobadilla-tech@requiems-api-skills/skills/disposable_email-post-check commit f5013c768c

Frequently asked questions

npx skillmds@latest add gabrielmoreira/disposable-email-post-check