Skip to main content
The official Enrow Python SDK wraps the REST API so you can run Email Finder, Email Verifier, and Phone Finder searches without handling HTTP requests yourself. Authenticate the client with your API key and the SDK sets the x-api-key header on every request for you.
These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.

Installation

pip install git+https://github.com/EnrowAPI/enrow-python.git

GitHub

github.com/EnrowAPI/enrow-python

Quick Start

from enrow import Enrow

client = Enrow("YOUR_API_KEY")

# Find an email
search = client.email.find(
    fullname="Dwight Schrute",
    company_domain="dundermifflin.com"
)

print(search.id)
Refer to the GitHub repository for full documentation and examples.

Next steps

Find an email

Search for a professional email address from a name and company.

Verify an email

Check whether an email address is valid and deliverable.

Authentication

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

Error handling

Handle status codes and error responses gracefully.