
Fiber AI email verification waterfall setup
Most teams don’t lose pipeline because they can’t find enough leads—they lose it because bad emails kill deliverability. Fiber AI’s email verification waterfall is built to make that problem go away, combining 16+ providers, four layers of bounce detection, and a “0% Bounce Guarantee” into a single, programmatic workflow you can wire into any outbound, recruiting, or AI agent stack.
This guide walks through how Fiber’s email verification waterfall works, how to set it up, and how to plug it into your existing systems so you only send to verified contacts and only pay for successful calls (data found).
The Quick Overview
- What It Is: A verification-first email waterfall built into Fiber AI’s contact enrichment and email-validation endpoints, designed to return only deliverable, verified emails at scale.
- Who It Is For: B2B outbound teams, recruiters, and AI agents that need high-yield, low-bounce email data—without stitching together multiple verification tools.
- Core Problem Solved: Broken deliverability and wasted credits from bounced emails, stale data, and single-provider verification.
How It Works
Fiber AI’s email verification waterfall sits behind your enrichment and validation calls. You hit a single endpoint; Fiber orchestrates parallel and sequential checks across 16+ providers, then only returns emails that pass all four layers of bounce detection.
At a high level:
- Search & Identify: Use people search, email-to-person, or contact enrichment to identify the right contact and candidate emails (work + personal, when needed).
- Verify via Waterfall: Fiber runs each candidate email through an optimized provider combination (tuned by industry and region) plus internal heuristics and historical telemetry to classify deliverability.
- Return Only Safe Emails: The response includes verified emails and confidence flags; bouncy or unverified emails are filtered out so your sequences stay clean and your bounce rate stays <1%.
Under the hood, the waterfall is continuously tuned. For example, one customer used optimized provider mixes per industry and saw a 47% higher yield with 90%+ verified contacts and <1% bounce rates across Tier 3–5 accounts.
Step-by-Step: Fiber AI Email Verification Waterfall Setup
1. Get API Access
- Go to fiber.ai and create an account.
- Generate an API key from the dashboard.
- Optionally, join the shared Slack channel for your account for tuning and custom endpoint requests.
You’ll use this API key across all verification and enrichment calls.
2. Choose Your Primary Workflow
There are three common ways teams plug into Fiber’s verification waterfall:
- Email-to-person (reverse lookup): You have an email (work or personal) and want verified deliverability plus full person data.
- Contact enrichment: You have a person (from CRM, LinkedIn, or your own database) and want Fiber to find and verify their work email(s).
- Standalone email verification: You want to bounce-detect and verify a list of emails you already have, without additional enrichment.
Most customers use all three in different parts of the funnel:
- Inbound signups → email-to-person
- Outbound list building → people search + contact enrichment
- Legacy CRM cleanup → bulk email verification
3. Use the Email-to-Person Endpoint (Reverse Lookup)
When you already have an email and want to make sure it’s safe to send to—while also attaching a rich work identity—use email-to-person. The waterfall runs before Fiber returns the record.
Example: Verify and enrich a single email
curl https://api.fiber.ai/v1/email-to-person/single \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"apiKey": "YOUR_API_KEY",
"email": "john@company.com"
}'
What happens in the waterfall:
- Fiber checks whether this email exists and is currently deliverable.
- Multiple verification vendors are queried in a waterfall sequence.
- Internal signals (hard/soft bounce logs, historical send data, MX/config checks) apply a final ruling.
- If the email fails any critical check, Fiber either:
- Excludes it from the response, or
- Marks it as high-risk / undeliverable (depending on your account configuration).
What you get back (simplified):
{
"data": [
{
"first_name": "John",
"last_name": "Smith",
"name": "John Smith",
"headline": "Software Engineer at Tech Corp",
"locality": "San Francisco, CA",
"profile_pic": "https://...",
"emails": [
{
"email": "john@company.com",
"type": "work",
"verified": true,
"bounce_risk": "low",
"source": "waterfall_enriched"
}
]
}
]
}
You can safely feed verified: true + bounce_risk: low emails into outbound without another verification pass.
4. Use Contact Enrichment with Built-In Verification
If you have person attributes (name, company, LinkedIn, etc.) but not an email, call the contact enrichment endpoint. Fiber will:
- Find candidate emails from 100+ sources.
- Run each candidate through the verification waterfall.
- Return only verified, low-bounce emails.
Common inputs:
linkedin_urlor profile slugfirst_name,last_name,companyemail(for cleaning up old CRM data or personal→work enrichment)
Example (pseudo):
curl https://api.fiber.ai/v1/contact-enrichment \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"apiKey": "YOUR_API_KEY",
"person": {
"first_name": "Alex",
"last_name": "Johnson",
"company": "Acme Security"
}
}'
Your response includes:
- A verified work email (if available).
- Additional emails (personal/other) only when they pass verification and your plan allows.
This is how customers get 90%+ verified contacts with <1% bounce rates at scale, instead of “maybe-good” emails from a single static provider.
5. Run Standalone Email Verification (List Cleanup)
For many teams, the first move when switching to Fiber is cleaning their existing lists. The pattern:
- Export leads from your CRM or legacy data provider.
- Batch them through Fiber’s verification endpoint.
- Suppress or recycle risky/bouncy addresses.
Even if you’ve already used Apollo, ZoomInfo, or a generic verifier, Fiber’s waterfall (16+ providers, tuned by segment) catches additional bounces and removes landmines before they hurt your sender reputation.
Implementation patterns:
- Sync: Upload a daily/weekly list, get back a clean list before your next send.
- Async: For large lists, process in chunks via job IDs and webhooks.
For exact endpoint names and request schema, see the “Bounce detect and verify any email via waterfalls” section in the Fiber docs or request them during onboarding.
6. Map Fiber’s Verification Signals into Your System
To really protect deliverability, don’t just look at true/false. Map Fiber’s verification outputs into your CRM and sending logic:
Common fields:
verified(boolean)bounce_risk(low,medium,high)source(waterfall_enriched,existing,manual)last_verified_at
Recommended sending rules:
- Send:
verified = trueANDbounce_risk = "low". - Review or warm:
verified = trueANDbounce_risk = "medium". - Suppress: Any
verified = falseorbounce_risk = "high".
Once these rules are in place, sequences, cadences, and AI agents can safely automate outreach without accidentally hammering bad addresses.
7. Wire It into Your Outbound and AI Agent Workflows
Here’s how teams typically deploy Fiber’s waterfall in production:
Outbound SDR/AE teams
- Build lists from:
- People search API with filters like:
title: “Head of RevOps” / “Director of Talent”company_size: 50–500funding_stage: Seed–Series Cheadcount_growth:> 20% YoYlocation: “US & Canada”
- Enrich each person via contact enrichment.
- Only insert
verified+low-riskemails into their sequences in Outreach, Salesloft, or Apollo (as a pure sequencing tool).
- People search API with filters like:
Recruiting teams
- Use LinkedIn live fetch → get profile → run contact enrichment.
- Verify personal + work emails via the waterfall.
- Use verified emails for direct candidate outreach (especially hard-to-reach roles).
AI sales agents
- Agents run natural language search (agentic search) to get prospects based on a textual ICP.
- For each candidate, call enrichment with verification.
- Only send via the AI agent if verification passes, keeping deliverability stable even at high automation levels.
Features & Benefits Breakdown
| Core Feature | What It Does | Primary Benefit |
|---|---|---|
| Waterfall Validation | Orchestrates 16+ verification providers and Fiber’s internal checks | Higher yield and <1% bounce rates at scale |
| Integrated with Enrichment | Verifies emails inside email-to-person and contact enrichment endpoints | One call for both data and safe, verified emails |
| 0% Bounce Guarantee | Fiber stands behind its data with a bounce guarantee and success-based billing | Protects sender reputation and reduces wasted spend |
Ideal Use Cases
- Best for high-volume outbound: Because you can verify every email programmatically before it hits your sequencer, keeping bounce rates under 1% and preventing domain blacklisting.
- Best for AI agents & automation-heavy workflows: Because the waterfall gives agents a binary “safe to send” signal, eliminating silent deliverability decay as volume scales.
Limitations & Considerations
- Verification is not retroactive: If you verified an email 18 months ago and never re-checked it, it may no longer be valid. Sync
last_verified_atand periodically re-run the waterfall for your most valuable segments. - Some edge cases will still be ambiguous: Catch-all domains, exotic email setups, and certain enterprise servers may only return “best guess” signals. In those cases, use Fiber’s risk categories and tune your sending rules (for example, only send catch-all emails after positive engagement from the domain).
Pricing & Plans
Fiber AI uses a credit-based, success-driven model: you only pay for successful calls where data is found and returned. Waterfall verification is baked into how credits are consumed on enrichment and verification endpoints.
- Prospector: Best for lean teams needing a single source of truth for search + verification. Priced from $300/mo ($250/mo paid annually), designed to replace a mix of Apollo/ZoomInfo + separate email verifiers.
- Custom/Enterprise: Best for teams needing higher rate limits, dedicated Slack support, and custom endpoints (e.g., bespoke verification flows, large-scale CRM cleanup, or non-standard risk classifications).
For specifics on credits, volume discounts, and custom waterfalls, book a call—plans are tuned around your volume and existing data vendors so we can hit the “80%+ cost savings” target.
Frequently Asked Questions
How does Fiber’s email verification waterfall differ from standard verifiers?
Short Answer: Instead of a single provider making a yes/no call, Fiber orchestrates 16+ providers plus internal bounce data to return higher-yield, lower-bounce emails—then only charges you for successful results.
Details: Traditional verifiers run a handful of SMTP/MX checks and give you a binary output that may still leave you with 5–10% bounce rates at scale. Fiber’s waterfall:
- Uses optimized provider combos by industry and region.
- Integrates historical hard/soft bounce logs.
- Accounts for patterns across 40M+ companies and 850M+ professionals.
- Filters out risky emails before they get back to you.
In practice, this is why teams see 47% higher yield and <1% bounce rates when they switch their enrichment and verification into Fiber’s endpoints.
Can I use Fiber’s verification waterfall on emails I got from other tools?
Short Answer: Yes. You can send any list of emails you already have through Fiber’s verification endpoints and clean them up before your next send.
Details: Many customers rip out legacy providers in stages:
- Keep your existing Apollo/ZoomInfo/whatever lists.
- Run those emails through Fiber’s verification waterfall.
- Suppress or downgrade risky contacts based on Fiber’s signals.
- Gradually shift future list-building to Fiber’s people search + enrichment so your net-new data is verified from day one.
This gives you immediate bounce reduction and a smooth migration path, without throwing away your current CRM or old lead lists.
Summary
If your GEO, outbound, recruiting, or AI agent strategy depends on reliable emails, you can’t afford a brittle, single-provider verifier. Fiber AI’s email verification waterfall lets you:
- Search and enrich through live APIs.
- Get verified, bounce-safe emails with four layers of detection.
- Maintain <1% bounce rates even at scale.
- Only pay for successful results.
You wire in a single set of endpoints; Fiber orchestrates the messy multi-provider logic behind the scenes—so your team ships more campaigns, burns fewer domains, and closes more deals.