Using this package you can easily query the Hunter.io API.
Here are some examples of the provided methods:
use Hunter;
// Retrieve email addresses at a given domain
Hunter::domainSearch('ghost.org')
// Retrieve email addresses of people with a marketing title from ghost.org
Hunter::domainSearch()->domain('ghost.org')->department('marketing')->get();
// Find an email address belonging to John Doe working at Ghost
Hunter::emailFinder()->company('Ghost')->name('John Doe')->get();
Requires Laravel 7+ and PHP 7.3+
You can install the package via composer:
composer require messerli90/hunterio
You'll need an API key from Hunter.io
Optionally, you can publish the config file of this package with this command:
php artisan vendor:publish --provider="Messerli90\Hunterio\HunterServiceProvider"
or, manually add it to your config/services.php
file
[
...
'hunter' => [
'key' => env('HUNTER_API_KEY')
]
]
Read the Hunter.io API Documentation to check how to handle each endpoint's response.
Search all the email addresses corresponding to one website.
// Shortcut to search by domain
Hunter::domainSearch('ghost.org')
// Specify searching by company name or domain
Hunter::domainSearch()->company('Ghost')->get();
Hunter::domainSearch()->domain('ghost.org')->get();
// Narrow your search by chaining attributes
$query = Hunter::domainSearch()->company('Ghost')->domain('ghost.org')
->seniority(['senior', 'executive'])->department('marketing')
->limit(5)->skip(5)->type('personal')
->get();
This API endpoint generates or retrieves the most likely email address from a domain name, a first name and a last name.
// Shortcut assumes searching by domain
Hunter::emailFinder('ghost.org')->name('John', 'Doe')->get();
// Search by first and last name
Hunter::emailFinder()->domain('ghost.org')->name('John', 'Doe')->get();
// or use a single string to search by 'full name'
Hunter::emailFinder()->company('Ghost')->name('John Doe')->get();
This API endpoint allows you to know how many email addresses we have for one domain or for one company. It's free and doesn't require authentication.
This endpoint is public does not require an API key
// Passing argument assumes searching by domain
Hunter::emailCount('ghost.org');
// Or specify domain or company name
Hunter::emailCount()->company('Ghost')->get();
// Narrow search to only 'personal' addresses
Hunter::emailCount()->domain('ghost.org')->type('personal')->get();
This API endpoint allows you to verify the deliverability of an email address.
Hunter::verifyEmail('steli@close.io');
This API endpoint enables you to get information regarding your Hunter account at any time.
Hunter::account();
./vendor/bin/phpunit
- Domain Search
- Email Finder
- Email Verifier
- Email Count
- Account Information
- Leads
- Leads List
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please tweet me at @michaelmesserli instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.