Crates.io | tomba |
lib.rs | tomba |
version | 0.1.0 |
source | src |
created_at | 2021-11-02 16:37:36.684967 |
updated_at | 2021-11-02 16:37:36.684967 |
description | tomba: A Rust library for tomba |
homepage | https://tomba.io/ |
repository | https://github.com/tomba-io/rust |
max_upload_size | |
id | 475785 |
size | 57,283 |
This is the official Rust client library for the Tomba.io Email Finder API, allowing you to:
You'll need an Tomba API access token, which you can get by signing up for a free account at https://app.tomba.io/auth/register
The free plan is limited to 25 search request and 50 verification a month, To enable all the data fields and additional request volumes see https://tomba.io/pricing.
Add this to your package's Cargo.toml
file:
[dependencies]
tomba = "0.1"
get email addresses found on the internet.
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.domain_search("tomba.io".to_string()).expect("should do domain_search ");
println!("website country {:?}", res.data.organization.location.country);
Find the verified email address of any professional.
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.email_finder("zapier.com".to_string(), "F_NAME".to_string(), "L_NAME".to_string()).expect("should do email finder");
println!("Email Finder email {}", res.data.email)
Verify the validity of any professional email address with the most complete email checker.
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.email_verifier("b.mohamed@tomba.io".to_string()).expect("should do verify");
println!("Email status {}", res.data.email.status)
See the official documentation.
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.
https://developer.tomba.io/#introduction-libraries
Founded in 2020, Tomba prides itself on being the most reliable, accurate, and in-depth source of Email address data available anywhere. We process terabytes of data to produce our Email finder API, company.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Please see the Apache 2.0 license file for more information.