Language Libraries
elixir Client Library
Installation
the package can be installed by adding tomba
to your list of dependencies in mix.exs
:
def deps do [ {:tomba, "~> 0.1.0"} ] endelixir
And fetch your project's dependencies:
mix deps.getbash
Usage
Domain Search
get email addresses found on the internet.
conf = Tomba.new("ta_xxxx", "ts_xxxx") {:ok, result} = Tomba.domain_search(Tomba,"tomba.io")elixir
Email Finder
Find the verified email address of any professional.
conf = Tomba.new("ta_xxxx", "ts_xxxx") {:ok, result} = Tomba.email_finder(Tomba,"stripe.com", "fname", "lname")elixir
Email Verifier
Verify the validity of any professional email address with the most complete email checker.
conf = Tomba.new("ta_xxxx", "ts_xxxx") {:ok, result} = Tomba.email_verifier(Tomba,"b.mohamed@tomba.io")elixir
Examples
Sample codes under examples/ folder.