Skip to main content

Installation

composer require enrow/enrow

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.