For the complete documentation index, see llms.txt. This page is also available as Markdown.

Webhook Events & Payloads

This page provides a complete reference for all Clearout webhook events and their payload structures. Each webhook event contains detailed information about the completed operation, allowing you to process the results in real time.

Event Timing

All webhook events are triggered immediately after the service completes.

Webhook Events Overview

Event Type
When Triggered

email_verifier.instant.completed *

After instant email verification completes

email_verifier.bulk.completed

After bulk email verification completes

email_finder.instant.completed *

After email finder operation completes

email_finder.bulk.completed

After bulk email finding completes

form_guard.email_validation.completed *

After email validation in forms is completed

form_guard.phone_validation.completed

After phone validation in forms is completed

form_guard.name_validation.completed

After name validation in forms is completed

Events that may be chargeable on a conditional basis; see our Pricing Guide for more details

Webhook Structure

All webhook payloads follow a consistent structure with common fields and service-specific data:

Common Fields

  • event_id - Unique identifier for this webhook delivery

  • event_type - The type of event that occurred

  • event_mode - Environment mode (live/test)

  • event_created_on - ISO 8601 timestamp when the event was created

  • payload - Contains the actual event data and results

Payload Structure

The payload object contains:

  • status - Overall operation status (success/error)

  • data - Service-specific data and results

Email Verifier Events

email_verifier.instant.completed

Triggered when instant email verification is completed.

Payload Example

Data Structure

The payload data structure is identical to the Email Verification API response. Refer to the Email Verification API documentation for detailed field descriptions.

email_verifier.bulk.completed

Triggered when bulk email verification is completed.

Payload Example

Email Finder Events

email_finder.instant.completed

Triggered when instant email finding is completed.

Payload Example

Data Structure

The payload data structure is identical to the Email Finder API response. Refer to the Email Finder API documentation for detailed field descriptions.

email_finder.bulk.completed

Triggered when bulk email finding is completed.

Payload Example

Form Guard Events

form_guard.email_validation.completed

Triggered when email validation in forms is completed.

Payload Example

form_guard.phone_validation.completed

Triggered when phone validation in forms is completed.

Payload Example

form_guard.name_validation.completed

Triggered when name validation in forms is completed.

Payload Example

Next Steps

Now that you understand the webhook events and payloads, learn how to validate webhook deliveries for security and test your webhook integration.

Last updated

Was this helpful?