Skip to main content

Official Tomba API client for php 🐘

Install and use the official Tomba PHP client library to find, verify, and enrich email addresses from the Tomba API.

Written by Tomba.io Team

Purpose?

Find and verify the email of an individual given a name and domain or a company.

Additional functions:

  • Check the account status.

  • Checking how many request left.

  • Checking domain information .

  • Email Sources.

  • List all your leads.

  • Lead Attributes.

  • domain autocomplete.

  • Checking List all your keys.

  • Usage.

  • Account Logs.

  • Email Count..

Installation

To install via Composer:

composer require tomba-io/php

Usage

Domain Search API

get email addresses found on the internet.

<?php use Tomba\Client; use Tomba\Services\Domain; $client = new Client(); $client ->setKey('ta_xxxx') ->setSecret('ts_xxxx') ; $domain = new Domain($client); $result = $domain->domainSearch('stripe.com');

Email Finder API

Generates or retrieves the most likely email address from a domain name, a first name and a last name.

<?php use Tomba\Client; use Tomba\Services\Finder; $client = new Client(); $client ->setKey('ta_xxxx') ->setSecret('ts_xxxx') ; $finder = new Finder($client); $result = $finder->emailFinder('stripe.com', 'fname', 'lname');.

Email Verifier API

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') ->setSecret('ts_xxxx') ; $verifier = new Verifier($client); $result = $verifier->emailVerifier('[email protected]');

Examples

Sample codes under examples/ folder.

Documentation

Other Libraries

There are official Tomba Email Finder client libraries available for many languages including PHP, Python, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API.

Still have questions?

If you have any issues or questions about Tomba, feel free to contact us, we will be happy to help you!

Did this answer your question?