Skip to main content
The official Enrow SDK for Rust wraps the Email Finder, Email Verifier, and Phone Finder endpoints in an async, type-safe client. Authenticate with your API key — the same x-api-key credential used across the Enrow API.
These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.

Installation

Add the git dependency to your Cargo.toml:
[dependencies]
enrow = { git = "https://github.com/EnrowAPI/enrow-rust" }

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.

Next steps

Authentication

How to pass your API key in the x-api-key header.

Find an email

The Find Single Email endpoint wrapped by this SDK.

Verify an email

Check whether an email address is valid and deliverable.

All SDKs

Browse the full list of official Enrow SDKs.