agentsclimarketplace

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

Install
npx -y skills add bobadilla-tech/requiems-api-skills --skill email-validate-post-batch

Assembled 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

NameTypeRequiredLocationDescription
emailsarrayyesbodyArray 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

FieldTypeDescription
resultsarrayList of validation results for each email, preserving input order
results[].emailstringnull
results[].validbooleanOverall validity (syntax + MX record)
results[].syntax_validbooleanWhether the email is syntactically valid (RFC 5322)
results[].mx_validbooleanWhether the domain has valid MX records
results[].disposablebooleanWhether the email comes from a disposable domain
results[].normalizedstringnull
results[].domainstringnull
results[].suggestionstringnull
totalintegerNumber of emails processed in the batch

Errors

  • 422 validation_failed — Valid JSON body that fails field validation (empty array or more than 50 emails).
  • 400 bad_request — Invalid JSON, malformed request body, or unexpected field types.
  • 500 internal_error — Unexpected server error

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.