Welcome to Tomba Docs! Create a free Tomba account and gain instant access to 400+ million contacts!
Language Libraries

Ruby Client Library

Installation

To install via Gem:

gem install tomba --save
bash

Usage

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 response
ruby

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 response
ruby

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 response
ruby

Examples

Sample codes under examples/ folder.