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
Usage
Domain Search
get email addresses found on the internet.
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->DomainSearch('wordpress.org')
print $result;
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;
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('m@wordpress.org')
print $result;
Examples
Get Account Information
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->Account();
print $result;
Email Count
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->Count('tomba.io');
print $result;
Finder Services
Author Finder
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->AuthorFinder('https://clearbit.com/blog/company-name-to-domain-api');
print $result;
LinkedIn Finder
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->LinkedinFinder('https://www.linkedin.com/in/alex-maccaw-ab592978');
print $result;
Email Enrichment
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->Enrichment('b.mohamed@tomba.io');
print $result;
Email Sources
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->EmailSources('b.mohamed@tomba.io');
print $result;
Domain and Company Status
Auto Complete
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->Autocomplete('google');
print $result;
Domain Status
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->Status('gmail.com');
print $result;
Activity Logs
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->Logs();
print $result;
Usage Statistics
use Tomba::Finder;
$tomba = Tomba::Finder->new("ta_xxxxx", "ts_xxxxx");
$result = $tomba->Usage();
print $result;
For more sample codes, check the examples/ folder.
Last modified on