> ## 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.

# Swift

> Use the Enrow Swift SDK to find and verify professional emails and phone numbers in your Swift apps

The Enrow Swift SDK wraps the REST API in idiomatic Swift, so you can call [Email Finder](/api-reference/email-finder/find-single), [Email Verifier](/api-reference/email-verifier/verify-single), and [Phone Finder](/api-reference/phone/find-single) without managing raw HTTP requests. Authenticate the client with your [API key](/authentication) and start enriching contacts in a few lines.

<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

### Swift Package Manager

```swift theme={null}
dependencies: [
    .package(url: "https://github.com/EnrowAPI/enrow-swift.git", from: "1.0.0")
]
```

Until published, clone github.com/EnrowAPI/enrow-swift.

## GitHub

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

## Quick Start

```swift theme={null}
import Enrow

let enrow = Enrow(apiKey: "YOUR_API_KEY")

let search = try await enrow.email.find(
    fullname: "Dwight Schrute",
    companyDomain: "dundermifflin.com"
)

print(search.id)
```

Refer to the <a href="https://github.com/EnrowAPI/enrow-swift" rel="nofollow">GitHub repository</a> for full documentation and examples.

Each search returns an `id` you can use to retrieve results from the [Get Single Email Result](/api-reference/email-finder/get-single-result) endpoint. Searches consume [credits](/credits-billing), and high-volume usage is subject to [rate limits](/rate-limits) — see [Error handling](/error-handling) for how failures are surfaced.

## 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">
    Search for a professional email from a name and company.
  </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 official Enrow client libraries.
  </Card>
</CardGroup>
