Microsoft Catch-All Email Verifier avatar
Microsoft Catch-All Email Verifier

Pricing

$2.00 / 1,000 emails_checks

Go to Store
Microsoft Catch-All Email Verifier

Microsoft Catch-All Email Verifier

Developed by

MinionHub

MinionHub

Maintained by Community

An Apify Actor that verifies Microsoft-hosted email addresses, including Outlook and Office365. It supports batch verification, sends results via HTTP POST to a webhook, and logs data to a dataset.

0.0 (0)

Pricing

$2.00 / 1,000 emails_checks

0

3

3

Last modified

3 hours ago

Apify Catchall Email Webhook Actor

This Apify Actor sends email addresses to a pre-configured webhook endpoint using an HTTP POST request. It supports batch processing, error tracking, and result logging in Apify datasets. This Actor is especially useful for integrating with systems that verify or handle catchall email domains.

πŸš€ Features

  • βœ… Simple and clean API
  • πŸ“¦ Supports JSON input with multiple emails
  • πŸ” Batch processing support
  • πŸ”’ Secure via environment variable configuration
  • πŸ“Š Logs results in Apify dataset
  • 🧰 Extensible codebase (built in ES modules)

πŸ“₯ Input

Provide a JSON object with an array of email addresses to process.

Example INPUT:

{
"emails": ["user1@example.com", "user2@example.com"]
}

Apify Catchall Email Webhook Actor

This Apify Actor sends email addresses to a pre-configured webhook endpoint using an HTTP POST request. It supports batch processing, error tracking, and result logging in Apify datasets. This Actor is especially useful for integrating with systems that verify or handle catchall email domains.

πŸš€ Features

  • βœ… Simple and clean API
  • πŸ“¦ Supports JSON input with multiple emails
  • πŸ” Batch processing support
  • πŸ”’ Secure via environment variable configuration
  • πŸ“Š Logs results in Apify dataset
  • 🧰 Extensible codebase (built in ES modules)

πŸ“₯ Input

Provide a JSON object with an array of email addresses to process.

Example INPUT:

{
"emails": [
"user1@example.com",
"user2@example.com"
]
}
success: true or false
result: The raw response from the webhook
error: Any error message if the request failed
Example Output:
## πŸ“€ Output
Each email submission is logged to the Apify dataset with:
- `success`: true or false
- `result`: The raw response from the webhook
- `error`: Any error message if the request failed
**Example Output:**
```json
{
"success": true,
"result": {
"status": "verified",
"details": {"...": "..."}
},
"error": null
}