Overview
Tomba is an email finding and verification service geared toward B2B sales outreach, letting you look up professional email addresses by name and company domain or verify whether an email address is deliverable. The API integrates easily into sales automation tools, CRM enrichment pipelines, or lead generation scripts. A free tier is available that includes a limited number of searches per month.
Beginner Tip
Sign up at tomba.io to get your API key and secret, then test the domain search endpoint first — it returns all known professional emails for a company domain and is the easiest way to verify the API is working.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"message_id": "msg_abc123def456",
"status": "delivered",
"to": "[email protected]",
"subject": "Welcome!",
"timestamp": "2025-01-15T10:30:00Z"
} Field Reference
domain The company domain that was searched emails List of email address objects found for the domain email The discovered email address (within each emails item) first_name First name of the person associated with the email last_name Last name of the person associated with the email confidence Confidence score 0-100 indicating how reliable the email address is Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://api.tomba.io/v1/domain-search?domain=stripe.com";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Similar APIs
View All →Apache Superset
Apache Superset's REST API lets you programmatically manage dashboards, charts, datasets, and database connections in your Superset instance.
Charity Search
Charity Search lets you look up verified US non-profit organizations by name, EIN, or keyword.
Clearbit Logo
⭐ Beginner's PickClearbit Logo returns a company logo image by domain name — no scraping required.
Instatus
Instatus API lets you programmatically create and update incidents and maintenance windows on your public status page.
Mailchimp
Mailchimp API lets you manage email lists, create campaigns, and track subscriber activity.