Expand description
§Tomba – Email Finder for B2B sales and email marketing
This is the official Rust client library for the Tomba API.
§Supported endpoints
| Endpoint | Method |
|---|---|
| Domain Search | domain_search |
| Email Finder | email_finder |
| Email Verifier | email_verifier |
| Email Sources | email_sources |
| Email Count | count |
| Domain Status | status |
| Autocomplete | autocomplete |
| Phone Finder | phone_finder |
| Phone Validator | phone_validator |
| Similar Domains | similar_domains |
| Technology Checker | technology_check |
| Email Format | email_format |
| Location | get_location |
| Enrichment | person_find, company_find, combined_find |
| Companies Search | companies_search |
| Keys | list_keys, get_key, create_key, delete_key, reset_key |
| Flags | list_flags, create_flag |
| Leads | list_leads, get_lead, create_lead, update_lead, delete_lead |
| Leads Lists | list_leads_lists, get_leads_list, create_leads_list, update_leads_list, delete_leads_list |
| Leads Attributes | list_leads_attributes, get_leads_attribute, create_leads_attribute, update_leads_attribute, delete_leads_attribute |
| Bulk | list_bulk, get_bulk, create_bulk, launch_bulk, delete_bulk, archive_bulk, rename_bulk, bulk_progress, bulk_download |
§Quick start
use tomba::{Tomba, TombaConfig};
let config = TombaConfig {
key: "ta_xxxx".to_string(),
secret: "ts_xxxx".to_string(),
};
let tomba = Tomba::init(config).expect("should construct");
let response = tomba.account().expect("should get account");
println!("{:?}", response.data);
println!("{:?}", response.rate_limit);Re-exports§
pub use error::TombaError;
Modules§
- error
- Error types for the Tomba SDK.
Structs§
- Rate
Limit - Rate-limit information extracted from response headers.
- Tomba
- The Tomba API client.
- Tomba
Config - Configuration for the Tomba client.
- Tomba
Response - A response from the Tomba API containing the parsed JSON body and rate-limit metadata from the response headers.
Functions§
- parse_
rate_ limit - Parse rate-limit headers from an HTTP response.