Skip to main content
The official Enrow SDK for PHP wraps the Enrow API with simple methods for the Email Finder, Email Verifier, and Phone Finder endpoints. You authenticate the client once with your API key — see Authentication for how to retrieve it.
These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.

Installation

composer require enrow/enrow
Until published, clone github.com/EnrowAPI/enrow-php.

GitHub

github.com/EnrowAPI/enrow-php

Quick Start

use Enrow\Enrow;

$enrow = new Enrow('YOUR_API_KEY');

// Find an email
$search = $enrow->email->find([
    'fullname' => 'Dwight Schrute',
    'company_domain' => 'dundermifflin.com'
]);

echo $search->id;
Refer to the GitHub repository for full documentation and examples. The client sends your API key in the x-api-key header on every request. Each search returns an id you can use to retrieve results from the Get Single Result endpoint, and each call consumes credits — see Credits & billing. For production usage, review the Rate limits and Error handling guides.

Next steps

Authentication

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

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.

All SDKs

Browse Enrow’s official SDKs for every language.