# Disposable Email Post Check

> Validate whether an email address uses a disposable domain

- Skill: `gabrielmoreira/disposable-email-post-check` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/disposable-email-post-check`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/disposable-email-post-check/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/disposable-email-post-check

---


## 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

```json
{
  "email": "user@tempmail.com"
}
```

## Response Example

```json
{
  "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

