> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enrow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Rust

> Install and use the official Enrow Rust SDK to find and verify emails and phone numbers with async, type-safe API calls

The official Enrow SDK for Rust wraps the [Email Finder](/api-reference/email-finder/find-single), [Email Verifier](/api-reference/email-verifier/verify-single), and [Phone Finder](/api-reference/phone/find-single) endpoints in an async, type-safe client. Authenticate with your [API key](/authentication) — the same `x-api-key` credential used across the Enrow API.

<Warning>
  These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.
</Warning>

## Installation

Add the git dependency to your `Cargo.toml`:

```toml theme={null}
[dependencies]
enrow = { git = "https://github.com/EnrowAPI/enrow-rust" }
```

## GitHub

<a href="https://github.com/EnrowAPI/enrow-rust" rel="nofollow">github.com/EnrowAPI/enrow-rust</a>

## Quick Start

```rust theme={null}
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 <a href="https://github.com/EnrowAPI/enrow-rust" rel="nofollow">GitHub repository</a> for full documentation and examples.

## Next steps

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    How to pass your API key in the x-api-key header.
  </Card>

  <Card title="Find an email" icon="envelope" href="/api-reference/email-finder/find-single">
    The Find Single Email endpoint wrapped by this SDK.
  </Card>

  <Card title="Verify an email" icon="circle-check" href="/api-reference/email-verifier/verify-single">
    Check whether an email address is valid and deliverable.
  </Card>

  <Card title="All SDKs" icon="cubes" href="/sdks/overview">
    Browse the full list of official Enrow SDKs.
  </Card>
</CardGroup>
