Skip to main content

Installation

cargo add enrow

GitHub

github.com/EnrowAPI/enrow-rust

Quick Start

use enrow::Enrow;

#[tokio::main]
async fn main() {
    let client = Enrow::new("YOUR_API_KEY");

    let search = client.email().find(EmailFindParams {
        fullname: "Dwight Schrute".into(),
        company_domain: Some("dundermifflin.com".into()),
        ..Default::default()
    }).await.unwrap();

    println!("{}", search.id);
}
Refer to the GitHub repository for full documentation and examples.