Skip to main content
The Enrow Swift SDK wraps the REST API in idiomatic Swift, so you can call Email Finder, Email Verifier, and Phone Finder without managing raw HTTP requests. Authenticate the client with your API key and start enriching contacts in a few lines.
These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.

Installation

Swift Package Manager

dependencies: [
    .package(url: "https://github.com/EnrowAPI/enrow-swift.git", from: "1.0.0")
]
Until published, clone github.com/EnrowAPI/enrow-swift.

GitHub

github.com/EnrowAPI/enrow-swift

Quick Start

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 GitHub repository for full documentation and examples. Each search returns an id you can use to retrieve results from the Get Single Email Result endpoint. Searches consume credits, and high-volume usage is subject to rate limits — see Error handling for how failures are surfaced.

Next steps

Authentication

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

Find an email

Search for a professional email from a name and company.

Verify an email

Check whether an email address is valid and deliverable.

All SDKs

Browse the official Enrow client libraries.