Verify a list of email addresses so you stop sending to bounces, powered by Cargo. Triggers: "verify these emails", "clean my email list", "check if these addresses are valid", "our bounce rate is too high", "validate emails before sending". Providers: waterfall. Skip when: you do not have the emails yet — use find-work-email first.
集成
Email Verification
试用Verify email addresses with the BounceBan API. Single and bulk email verification specializing in catch-all (accept-all) and SEG-protected emails, fast email...
它能做什么
Verify email addresses with the BounceBan API. Single and bulk email verification specializing in catch-all (accept-all) and SEG-protected emails, fast email/domain checks (free/disposable/role), credits and rate-limit management, and webhooks. Use when the user asks to verify emails, clean an email list, check deliverability, or detect disposable/free/role addresses.
技能文档
BounceBan Email Verification
Verify emails via the BounceBan API. BounceBan specializes in accept-all (catch-all) emails and emails protected by Secure Email Gateways - it identifies which accept-all emails are actually deliverable instead of marking them all as risky.
Setup
- API key: read from
$BOUNCEBAN_API_KEY(get one at https://bounceban.com/app/api/settings). - Auth: send the key in the
Authorizationheader, noBearerprefix. - Base URL:
https://api.bounceban.com(exception: waterfall endpoint useshttps://api-waterfall.bounceban.com). - Each verification costs 1 credit. Check balance with
GET /v1/account.
curl -s "https://api.bounceban.com/v1/account" -H "Authorization: $BOUNCEBAN_API_KEY"
Choosing an endpoint
| Task | Endpoint | Details |
|---|---|---|
| Verify 1 email, wait for result (simplest) | GET https://api-waterfall.bounceban.com/v1/verify/single | references/single-verification.md |
| Verify 1 email, async (poll or webhook) | GET /v1/verify/single + GET /v1/verify/single/status | references/single-verification.md |
| Verify a list of emails (<= ~500k) | POST /v1/verify/bulk | references/bulk-verification.md |
| Verify emails in a CSV file (<= 25 MB) | POST /v1/verify/bulk/file | references/bulk-verification.md |
| Task progress | GET /v1/verify/bulk/status | references/bulk-verification.md |
| Fetch bulk results (JSON, paginated) | GET /v1/verify/bulk/dump | references/bulk-verification.md |
| Fetch results for specific emails (<= 100) | POST /v1/verify/bulk/emails | references/bulk-verification.md |
| Export bulk results to CSV link | POST /v1/verify/bulk/export | references/bulk-verification.md |
| Delete a bulk task (irreversible) | POST /v1/verify/bulk/destroy | references/bulk-verification.md |
| Quick check: free/disposable/role/syntax (no SMTP) | GET /v1/check | references/check.md |
| Credits balance and rate limits | GET /v1/account | references/account.md |
| Webhook payloads and event types | - | references/webhooks.md |
Read the matching reference file before calling an endpoint you haven't used in this session. references/introduction.md covers auth, credits, result enums, and rate limits in full.
Quick recipes
Verify one email and wait (recommended default; holds connection up to 80 s):
curl -s "https://api-waterfall.bounceban.com/v1/verify/single?email=someone@example.com" \
-H "Authorization: $BOUNCEBAN_API_KEY"
Verify a list:
# 1. Create task -> returns {"id": ...}
curl -s -X POST "https://api.bounceban.com/v1/verify/bulk" \
-H "Authorization: $BOUNCEBAN_API_KEY" -H "Content-Type: application/json" \
-d '{"emails": ["a@example.com", "b@example.com"]}'
# 2. Poll until status=finished
curl -s "https://api.bounceban.com/v1/verify/bulk/status?id=TASK_ID" \
-H "Authorization: $BOUNCEBAN_API_KEY"
# 3. Fetch results (cursor pagination; loop until cursor is null)
curl -s "https://api.bounceban.com/v1/verify/bulk/dump?id=TASK_ID&page_size=1000" \
-H "Authorization: $BOUNCEBAN_API_KEY"
Reading results
result:deliverable(safe) |risky(checkscore, higher is better) |undeliverable(will bounce) |unknown.score: 0-100 deliverability confidence.- Flags:
is_disposable,is_accept_all,is_role,is_free; plusmx_records,smtp_provider. - Optional
mode=deepverifyparameter improves accept-all accuracy when the email domain matches the owner's company website (e.g. sourced from LinkedIn).
Critical rules (violating these wastes the user's credits)
- Never resubmit an email while its status is
verifyingorqueue- every submit to/v1/verify/singlecosts 1 credit. Poll/v1/verify/single/statusinstead (free). - Waterfall endpoint HTTP
408= timeout, not failure: retry the same request; retries within 30 minutes are free. - Polling cap: max 10 polls per verification
idper 5 minutes; after 5 minutes without a result, start a new verification instead. - Bulk export links expire after 4 hours; results are retained for 90 days.
POST /v1/verify/bulk/destroyis irreversible - confirm with the user first.- For
/v1/verify/bulk/file, thefilefield must be the LAST field in the multipart form. - Rate limits:
/verify/single25/s,/verify/bulk3/s, others 25/s (live values:GET /v1/account).
Error handling
| HTTP | Meaning | Action |
|---|---|---|
| 400 | Invalid parameter | Fix the request; body may include details. |
| 401 | Bad/missing API key | Check $BOUNCEBAN_API_KEY; no Bearer prefix. |
| 403 | Insufficient credits | Report credits_required vs credits_remaining to the user; buy at https://bounceban.com/pricing. |
| 405 | Account blocked | Tell the user to contact dev@bounceban.com. |
| 408 | Waterfall timeout | Retry same request (free within 30 min). |
| 429 | Rate limited | Back off and retry with delay. |
| 500 | Server error | Retry once, then report. |
相关技能
Email Address Validation - Single: Verify single email: syntax, DNS/MX lookup, SMTP mailbox check (without sending). Detects disposable, role-based, spam tra...
Verify email validity and format, cut email bounce‑rates and clean contact lists for exporters, recruiters and B2B sales teams. Trigger: email address validation, reduce email bounce rate, email‑list scrubbing, CRM data cleansing, cold outreach optimization
Bulk Email Address Validation - NeverBounce: Bulk verify up to 1000 emails via NeverBounce using the user's connected NeverBounce API key. Use when an agent...
VerifiedEmail (verified.email). Use this skill for ANY VerifiedEmail request — searching and reading data. Whenever a task involves VerifiedEmail, use this s...
核验邮箱地址的真实可用状态,逐条返回邮箱验证结果以及判定原因,清理无效邮箱数据,降低外贸邮件群发退信概率,完成邮件列表合规清洗。