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 installshell
Usage
Domain Search
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.