Skip to main content

Installation

pip install enrow

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.