Language Libraries
Ruby Client Library
Installation
To install via Gem:
gem install tomba --savebash
Usage
Domain Search
get email addresses found on the internet.
require 'tomba' client = Tomba::Client.new() client .set_key('ta_xxxx') # Your Key .set_secret('ts_xxxx') # Your Secret ; domain = Tomba::Domain.new(client); response = domain.domain_search(domain: 'stripe.com'); puts responseruby
Email Finder
Find the verified email address of any professional.
require 'tomba' client = Tomba::Client.new() client .set_key('ta_xxxx') # Your Key .set_secret('ts_xxxx') # Your Secret ; finder = Tomba::Finder.new(client); response = finder.email_finder(domain: 'stripe.com', first_name: 'fname', last_name: 'lname'); puts responseruby
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') # Your Key .set_secret('ts_xxxx') # Your Secret ; verifier = Tomba::Verifier.new(client); response = verifier.email_verifier(email: 'b.mohamed@tomba.io'); puts responseruby
Examples
Sample codes under examples/ folder.