Tomba.io platform help — domain search, email finder, email verifier, enrichment, author finder, LinkedIn finder, phone finder, bulk operations, browser extensions, API, integrations. Use when you can't find a prospect's email address in Tomba, Tomba verification results look wrong, your enriched contacts are missing data, the Tomba API isn't returning expected results, a Tomba integration isn't syncing, or your Tomba lead lists are disorganized. Do NOT use for enrichment strategy across tools (use /sales-enrich), building prospect lists (use /sales-prospect-list), cross-platform deliverability (use /sales-deliverability), or connecting tools generically (use /sales-integration).
Help the user with Tomba.io platform questions — from domain search and email finding through verification, enrichment, bulk operations, API, and integrations.
If references/learnings.md exists, read it first for accumulated knowledge.
Ask the user:
What area of Tomba do you need help with?
What's your role?
What are you trying to accomplish? (describe your specific goal or question)
If the user's request already provides most of this context, skip directly to the relevant step. Lead with your best-effort answer using reasonable assumptions (stated explicitly), then ask only the most critical 1-2 clarifying questions at the end — don't gate your response behind gathering complete context.
Note: If the user needs a specialized skill, route them there with a brief explanation of why that skill is a better fit.
If the request maps to a specialized skill, route:
/sales-enrich/sales-prospect-list/sales-deliverability/sales-intent/sales-integrationOtherwise, answer directly from platform knowledge using the reference below.
Read references/platform-guide.md for detailed module documentation, pricing, integrations, and data model.
You no longer need the platform guide details — focus on the user's specific situation.
Based on the user's specific question, provide:
Find all contacts at a target company:
Find a specific person's email:
Clean an existing list before a campaign:
Monitor competitor tech stack:
/sales-intentBest-effort from research — review these, especially items about plan-gated features and integration gotchas that may be outdated.
Don't skip email verification after finding. The Email Finder returns probable emails based on pattern matching — they're not guaranteed deliverable. Always run found emails through the Email Verifier before adding them to campaigns. Sending to unverified emails destroys sender reputation.
Don't ignore the Email Format endpoint. Before searching for individual emails, check the domain's email format first (/v1/email-format). If you know the company uses [email protected] (85% match), you can validate results faster and skip low-confidence guesses.
Don't waste credits on unfiltered domain searches. A domain search on a large company can return thousands of results. Use department, seniority, and country filters to narrow to decision-makers you'll actually contact. Each search costs credits regardless of how many results you use.
Don't forget about webhook callbacks for bulk jobs. Bulk operations are asynchronous — the API returns immediately but processing continues in background. Use the webhook_url parameter to get notified when done instead of polling. Polling wastes API calls and may hit rate limits.
Don't assume all plans include the same features. Webhooks require Pro plan or above. Full domain search result downloads are plan-gated. Check your plan's limits before building workflows that depend on these features.
Self-improving: If you discover something not covered here, append it to references/learnings.md with today's date.
/sales-enrich — Enrichment strategy across tools (waterfall enrichment, CRM hygiene, credit optimization)/sales-prospect-list — Build targeted prospect lists with ICP definition and segmentation/sales-deliverability — Email deliverability setup (SPF/DKIM/DMARC, warmup, inbox placement)/sales-intent — Interpret buying signals and prioritize accounts (use Tomba's tech detection as a signal)/sales-integration — Connect Tomba to CRM and other tools via Zapier, Make, or API/sales-cadence — Design outbound sequences for contacts found in Tomba/sales-do — Not sure which skill to use? The router matches any sales objective to the right skill. Install: npx skills add sales-skills/sales --skills sales-doUser says: "I need to find all the sales leaders at Stripe using Tomba" Skill does:
stripe.com with department=sales and seniority=executive,seniorUser says: "I have a CSV of 3,000 contacts and need to verify all the emails before launching a Lemlist campaign" Skill does:
/sales-lemlist for importing the clean list into Lemlist
Result: Verified contact list with clear action per status, ready for campaign importUser says: "I want to auto-enrich new HubSpot contacts with Tomba data via Zapier" Skill does:
/sales-integration for advanced multi-tool workflows
Result: Automated enrichment pipeline from HubSpot → Tomba → HubSpot with credit-conscious filteringSymptom: Domain search returns very few results for a company you know has many employees
Cause: Tomba's database may have limited coverage for that specific company, especially smaller or newer companies
Solution: Try searching by company name instead of domain. Use the Email Finder with specific names (from LinkedIn) for targeted lookups. Consider waterfall enrichment with multiple providers — see /sales-enrich.
Symptom: Verification returns "unknown" status instead of valid/invalid Cause: The mail server didn't respond definitively — this happens with some corporate email servers that limit SMTP verification Solution: Don't treat "unknown" as "valid." For high-value prospects, include them but monitor bounce rates closely. For bulk campaigns, exclude unknowns to protect sender reputation.
Symptom: Getting 429 Too Many Requests responses from the API Cause: Exceeding your plan's rate limit — making too many requests too quickly Solution: Implement exponential backoff (wait 1s, 2s, 4s between retries). Batch requests where possible. Use bulk endpoints instead of making individual calls in a loop. If consistently hitting limits, consider upgrading your plan.