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

Perl Client Library

Installation

install from source (not necessary for use in your application), download the source and run the following commands:

perl Makefile.PL
make
make test
make install
shell

Usage

get email addresses found on the internet.

use Tomba::Finder;

$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");

$result = $tomba->DomainSearch('tomba.io')

print $result;
perl

Email Finder

Find the verified email address of any professional.

use Tomba::Finder;

$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");

$result = $tomba->emailFinder('stripe.com', 'fname', 'lname')

print $result;
perl

Email Verifier

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

use Tomba::Finder;

$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");

$result = $tomba->EmailVerifier('b.mohamed@tomba.io')

print $result;
perl

Examples

Sample codes under examples/ folder.