Crate tomba[][src]

Expand description

Tomba: Tomba.io is an Email Finder for B2B sales and email marketing

This is the Rust client library for the Email Finder API. It allows you to lookup the following details :

  • Domain Search are based on the website You give one domain name and it returns all the email addresses found on the internet.
  • Email Finder generates or retrieves the most likely email address from a domain name, a first name and a last name.
  • Email Verifier checks the deliverability of a given email address, verifies if it has been found in our database, and returns their sources.
  • Email Sources Find email address source somewhere on the web .
  • Company Autocomplete is an API that lets you auto-complete company names and retrieve logo and domain information.

Features

  • Collect publicly available emails online (Html, execute JavaScript,files,).
  • No duplicate email No duplicate domain .
  • No webmail like Gmail,Outlook and the others.
  • We detect 15 type of hashes and remove them.
  • No disposable and temporary email address.

Example

use tomba::{Tomba, TombaConfig};
 
let config = TombaConfig {
   key: "ta_xxxx".to_string(),
   secret: "ts_xxxx".to_string(),
};
let mut tomba = Tomba::init(config).expect("should construct");
 
let res = tomba.account();

Structs