
Automate Email Verification
in Your Integrately Automations
Add a real-time email check to any Integrately automation by calling the Valid Email Checker API from the generic Webhook / API step — no native app to connect. Verify a new lead, then use the returned status to decide what happens next.
Verify-email automation
IntegratelyTrigger app
New lead / form
Verify Email
Valid Email Checker
Add to CRM
Skip / tag
What You Need to Get Started
A Valid Email Checker API Key
Generate one on the Developer page. 150 free credits on signup.
An Integrately Account
Any plan that lets you add a Webhook / API step to an automation.
A Few Minutes
Add one Webhook / API step, paste your key, and you are verifying.
How to Build It in Integrately
No native app required. You only need Integrately's generic Webhook / API step.
The exact field labels inside Integrately's Webhook / API step can vary by version. The method, URL, header, and JSON body below stay the same regardless of how a label is worded.
Add a Webhook / API step
In your automation, add the generic Webhook / API step. Set the method to POST and the URL to the verify-single endpoint below.
https://app.validemailchecker.com/api/verify-single
Add your API key as a header
Add a request header named Authorization with the value Bearer YOUR_API_KEY.
Authorization: Bearer YOUR_API_KEY
Get your key: generate it on the API Access page in your dashboard.
Send the email as a JSON body
Set the content type to application/json and send a JSON body with the email — map it from a field produced by your trigger step.
{
"email": "{{trigger.email}}"
}Use the returned status in the next step
The step returns a JSON response. Reference the status (or is_valid) value in your following step — for example, only add the contact to your CRM when status is safe.
Single vs. Bulk — Which Endpoint?
Verify one address at a time as records flow through, or clean a whole list in one task. Both cost 1 credit per email.
Verify one at a time
DefaultPOST /api/verify-singleAs each record flows through your automation — a new form submission, a new lead, a new row — verify that one email in real time, then branch on the result in your next step.
The default for Integrately automations. It is what the step-by-step above uses.
Clean a whole list
BatchPOST /api/verify-bulkGET /api/get-results/{task_id}Periodically cleaning an existing list? Submit many emails as one task and poll for results — far more efficient than looping single Webhook / API calls.
Submitting as one task avoids the 60 requests/minute limit; the daily cap is 10,000 verifications.
What the API Returns
Every verification responds with a structured JSON object you can reference in later steps.
statusVerdict: safe, invalid, risky, or unknown.
is_validBoolean — safe to send to.
is_disposableFlags throwaway / temporary domains.
is_role_accountFlags addresses like info@ or admin@.
is_catch_allDomain accepts mail for any address.
mx_foundWhether valid MX records exist.
risk_scoreNumeric risk indicator for the address.
credits_usedCredits charged for this request.
Why Verify Inside Integrately
Protect Your Sender Reputation
Stop invalid and disposable addresses before they reach your CRM or email tool.
Real-Time, Not Batch
Verify the moment a lead arrives — at signup, on a form submit, or as a webhook fires.
Two-Way by Design
Use the Webhook / API step to send requests or to receive inbound data — your call.
Credits & Billing
1 Credit = 1 Email
Same rate as bulk, dashboard, and API.
Unknown = Refunded
Credits returned for unverifiable emails.
150 Free Credits
Included on every new account.
60/min · 10k/day
Generous API rate limits.
Frequently Asked Questions
No. There is no native app to connect. You use Integrately's generic Webhook / API step to send a request to the Valid Email Checker API, and read the response in your next step. Exact field labels in the step can vary by Integrately version, but the method, URL, header, and JSON body stay the same.
1 credit per email — the same rate as bulk upload, the dashboard, and every other method. If a result comes back as "Unknown" because we could not reach a definitive answer, that credit is automatically refunded to your account.
API keys are generated on the Developer page inside your Valid Email Checker dashboard. Create a key and pass it in the Authorization header of your Integrately Webhook / API step as "Bearer YOUR_API_KEY". You can revoke and regenerate keys at any time.
Yes. Integrately's Webhook / API works in both directions — use it as an action to POST your verify request, or as a trigger to receive inbound data and kick off an automation. A common pattern is: trigger on a new lead, call verify, then act on the returned status.
Yes. For larger lists, point the Webhook / API step at /api/verify-bulk with an array of emails, store the returned task_id, then add a step that calls GET /api/get-results/{task_id} to fetch the results. The single-email endpoint is best for real-time, one-at-a-time automations.
Ready to Verify Emails in Integrately?
Sign up, grab your API key from the Developer page, and add one Webhook / API step to your automation. 150 free credits included — no credit card required.
Get Started Free150 free credits · No credit card · Generic Webhook / API step