tomba
v1.0.7
Published
Tomba.io is an Email Finder for B2B sales and email marketing
Maintainers
Readme
Tomba Email Finder Node Client Library
This is the official Node client library for the Tomba.io Email Finder API, allowing you to:
- Domain Search (Search emails are based on the website You give one domain name and it returns all the email addresses found on the internet.)
- Email Finder (This API endpoint generates or retrieves the most likely email address from a domain name, a first name and a last name..)
- Email Verifier (checks the deliverability of a given email address, verifies if it has been found in our database, and returns their sources.)
- Email Enrichment (Locate and include data in your emails.)
- Author Finder (Instantly discover the email addresses of article authors.)
- LinkedIn Finder (Instantly discover the email addresses of Linkedin URLs.)
- Reveal (Find relevant companies at scale.)
- Phone Finder (Search phone numbers based on email address, website, or LinkedIn profile URL.)
- Phone Validator (Validate phone numbers & check carrier information.)
Getting Started
You'll need an Tomba API access token, which you can get by signing up for a free account at https://app.tomba.io/auth/register
The free plan is limited to 25 search request and 50 verification a month, To enable all the data fields and additional request volumes see https://tomba.io/pricing.
Installation
To install via NPM:
npm install tomba --saveTo install via YARN:
yarn add tombaUsage
TypeScript Support
Tomba now supports TypeScript out of the box. You can use ES6 imports and get full type safety and autocompletion.
Example
import { TombaClient, Domain } from "tomba";
// Init Tomba
const client = new TombaClient();
const domain = new Domain(client);
client
.setKey("ta_xxxx") // Your Key
.setSecret("ts_xxxx"); // Your Secret
const result = domain.domainSearch("stripe.com");
result
.then((response) => {
console.log(response);
})
.catch((err) => {
console.log(err);
});See more TypeScript examples in the examples/ folder (look for .ts files).
Email Finder
Find the verified email address of any professional.
import { TombaClient, Finder } from "tomba";
// Init Tomba
let client = new TombaClient();
let finder = new Finder(client);
client
.setKey("ta_xxxx") // Your Key
.setSecret("ts_xxxx"); // Your Secret
let result = finder.emailFinder("stripe.com", "fname", "lname");
result
.then((response) => {
console.log(response);
})
.catch((err) => {
console.log(err);
});Email Verifier
Verify the validity of any professional email address with the most complete email checker.
import { TombaClient, Verifier } from "tomba";
// Init Tomba
let client = new TombaClient();
let verifier = new Verifier(client);
client
.setKey("ta_xxxx") // Your Key
.setSecret("ts_xxxx"); // Your Secret
let result = verifier.emailVerifier("[email protected]");
result
.then((response) => {
console.log(response);
})
.catch((err) => {
console.log(err);
});Examples
Sample codes under examples/ folder.
Documentation
See the official documentation.
Other Libraries
There are official Tomba Email Finder client libraries available for many languages including PHP, Python, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API.
https://docs.tomba.io/libraries
About Tomba
Founded in 2020, Tomba prides itself on being the most reliable, accurate, and in-depth source of Email address data available anywhere. We process terabytes of data to produce our Email finder API, company.
Contribution
- Fork it (https://github.com/tomba-io/node/fork)
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
License
Please see the Apache 2.0 license file for more information.
