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 Gem:
gem install tomba --save
Usage
Domain Search API
get email addresses found on the internet.
require 'tomba' client = Tomba::Client.new() client .set_key('ta_xxxx') .set_secret('ts_xxxx') ; domain = Tomba::Domain.new(client); response = domain.domain_search(domain: 'stripe.com'); puts response
Email Finder
Generates or retrieves the most likely email address from a domain name, a first name and a last name.
require 'tomba' client = Tomba::Client.new() client .set_key('ta_xxxx') .set_secret('ts_xxxx') ; finder = Tomba::Finder.new(client); response = finder.email_finder(domain: 'stripe.com', first_name: 'fname', last_name: 'lname'); puts response
Email Verifier
Verify the validity of any professional email address with the most complete email checker.
require 'tomba' client = Tomba::Client.new() client .set_key('ta_xxxx') .set_secret('ts_xxxx') ; verifier = Tomba::Verifier.new(client); response = verifier.email_verifier(email: '[email protected]'); puts response
Examples
Sample codes under examples/ folder.
Documentation
See the official 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.
Get started here: Official Tomba API client for Ruby
Related Resources
API Documentation — Complete API reference and guides
Authentication Guide — How to authenticate API requests
Official Libraries — SDKs for Python, Node.js, PHP, Go, and more
Rate Limits — API rate limiting and best practices
Domain Search — Find all emails for a company domain
Domain Search API — API reference for domain search
Email Finder API — API reference for email finder
Email Verifier API — API reference for email verification
Still have questions?
If you have any issues or questions about Tomba, feel free to contact us, we will be happy to help you!
