Language Libraries
PHP Client Library
Installation
To install via Composer:
composer require tomba-io/phpbash
Usage
Domain Search
get email addresses found on the internet.
<?php use Tomba\Client; use Tomba\Services\Domain; $client = new Client(); $client ->setKey('ta_xxxx') // Your API Key ->setSecret('ts_xxxx') // Your Secret ; $domain = new Domain($client); $result = $domain->domainSearch('stripe.com');php
Email Finder
Find the verified email address of any professional.
<?php use Tomba\Client; use Tomba\Services\Finder; $client = new Client(); $client ->setKey('ta_xxxx') // Your API Key ->setSecret('ts_xxxx') // Your Secret ; $finder = new Finder($client); $result = $finder->emailFinder('stripe.com', 'fname', 'lname');.php
Email Verifier
Verify the validity of any professional email address with the most complete email checker.
<?php use Tomba\Client; use Tomba\Services\Verifier; $client = new Client(); $client ->setKey('ta_xxxx') // Your API Key ->setSecret('ts_xxxx') // Your Secret ; $verifier = new Verifier($client); $result = $verifier->emailVerifier('b.mohamed@tomba.io');php
Examples
Sample codes under examples/ folder.