Endpoint
POST https://requiems.xyz/v1/networking/disposable/batch
Check Batch Emails
Validate multiple email addresses in a single request (max 100 emails)
Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
emails |
array | yes | body | Array of email addresses to check (max 100) |
Request Example
{
"emails": [
"user1@gmail.com",
"user2@tempmail.com",
"user3@guerrillamail.com"
]
}
Response Example
{
"data": {
"results": [
{
"email": "user1@gmail.com",
"is_disposable": false,
"domain": "gmail.com"
},
{
"email": "user2@tempmail.com",
"is_disposable": true,
"domain": "tempmail.com"
},
{
"email": "user3@guerrillamail.com",
"is_disposable": true,
"domain": "guerrillamail.com"
}
],
"total": 3
},
"metadata": {
"timestamp": "2026-01-01T00:00:00Z"
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
results |
array | Array of check results for each email |
total |
integer | Total number of emails checked |
Errors
undefined400 — The request body is missing or malformedundefined400 — The emails field is missingundefined400 — Too many emails in the request