Welcome to Tomba Docs! Create a free Tomba account and gain instant access to 400+ million contacts!
Language Libraries

Node Client Library

Installation

To install via NPM:

npm install tomba --save
bash

To install via YARN:

yarn add tomba
bash

Usage

get email addresses found on the internet.

const tomba = require("tomba");

// Init Tomba
let client = new tomba.Client();

let domain = new tomba.Domain(client);

client
  .setKey("ta_xxxx") // Your Key
  .setSecret("ts_xxxx"); // Your Secret
let result = domain.domainSearch("stripe.com");

result
  .then((response) => {
    console.log(response);
  })
  .catch((err) => {
    console.log(err);
  });
js

Email Finder

Find the verified email address of any professional.

const tomba = require("tomba");

// Init Tomba
let client = new tomba.Client();

let finder = new tomba.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);
  });
js

Email Verifier

Verify the validity of any professional email address with the most complete email checker.

const tomba = require("tomba");

// Init Tomba
let client = new tomba.Client();

let verifier = new tomba.Verifier(client);

client
  .setKey("ta_xxxx") // Your Key
  .setSecret("ts_xxxx"); // Your Secret
let result = verifier.emailVerifier("b.mohamed@tomba.io");

result
  .then((response) => {
    console.log(response);
  })
  .catch((err) => {
    console.log(err);
  });
js

Examples

Sample codes under examples/ folder.