Email validate post batch
Skill bobadilla-tech/requiems-api-skills/skills/email-validate-post-batch
Validates up to 50 email addresses in a single request. Each email is processed independently and returns a full validation breakdown (syntax, MX record, disposable check, normalization, and typo suggestion). Invalid emails do not fail the request. Billing: 1 credit per email.From its SKILL.md
npx -y skills add bobadilla-tech/requiems-api-skills --skill email-validate-post-batchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.9 KB, 630 tokens by cl100k_base, as published. Nobody here has run it
Endpoint
POST https://api.requiems.xyz/v1/validation/email/batch
Validate Emails (Batch)
Validates up to 50 email addresses in a single request. Each email is processed independently and returns a full validation breakdown (syntax, MX record, disposable check, normalization, and typo suggestion). Invalid emails do not fail the request. Billing: 1 credit per email.
Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
emails | array | yes | body | Array of email addresses to validate. Min: 1, Max: 50. |
Request Example
{
"emails": ["[email protected]", "[email protected]"]
}
Response Example
{
"data": {
"results": [
{
"email": "[email protected]",
"valid": true,
"syntax_valid": true,
"mx_valid": true,
"disposable": false,
"normalized": "[email protected]",
"domain": "gmail.com",
"suggestion": null
},
{
"email": "[email protected]",
"valid": false,
"syntax_valid": true,
"mx_valid": false,
"disposable": false,
"normalized": "[email protected]",
"domain": "gmial.com",
"suggestion": "gmail.com"
}
],
"total": 2
},
"metadata": {
"timestamp": "2026-01-01T00:00:00Z"
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
results | array | List of validation results for each email, preserving input order |
results[].email | string | null |
results[].valid | boolean | Overall validity (syntax + MX record) |
results[].syntax_valid | boolean | Whether the email is syntactically valid (RFC 5322) |
results[].mx_valid | boolean | Whether the domain has valid MX records |
results[].disposable | boolean | Whether the email comes from a disposable domain |
results[].normalized | string | null |
results[].domain | string | null |
results[].suggestion | string | null |
total | integer | Number of emails processed in the batch |
Errors
422validation_failed — Valid JSON body that fails field validation (empty array or more than 50 emails).400bad_request — Invalid JSON, malformed request body, or unexpected field types.500internal_error — Unexpected server error
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.