PHPackages                             korra88/email-list-verify-api-php-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. korra88/email-list-verify-api-php-client

ActiveLibrary[API Development](/categories/api)

korra88/email-list-verify-api-php-client
========================================

v1.3.4(8y ago)1113MITPHP

Since Nov 11Pushed 8y ago1 watchersCompare

[ Source](https://github.com/korra88/Email-List-Verify-API-PHP-client)[ Packagist](https://packagist.org/packages/korra88/email-list-verify-api-php-client)[ RSS](/packages/korra88-email-list-verify-api-php-client/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)DependenciesVersions (10)Used By (0)

EmailListVerify API PHP library
===============================

[](#emaillistverify-api-php-library)

This library provides a convient interface for email verification with [emaillistverify](http://www.emaillistverify.com/) in PHP.

Installation
------------

[](#installation)

Install via composer: `composer require korra88/email-list-verify-api-php-client`. Or download in your project and include the two files in `src/` directory.

### Usage

[](#usage)

First obtain an api key by registering in emailistverify, creating an application, and set it in the constructor.

```
// composer autoloader
require_once '/path/to/vendor/autoload.php';
$emailVerify = new EmailListVerify\APIClient(YOUR_API_KEY);
```

Then you can either can verify emails one by one with:

```
$email = "your_email@example.com";
try {
    $status = $emailVerify->verifyEmail($email);
} catch (Exception $e) {
    echo "\n" . $e->getMessage();
    $status = false;
}
echo "\n{$email} status: " . ($status ? 'valid' : 'invalid')
```

Or upload a file with a list of emails in a csv-like format:

```
$email_file_path = __DIR__ . '/email_list.csv';
$email_file_name = 'test_emails.csv';
try {
    $file_id = $emailVerify->verifyApiFile($email_file_name, $email_file_path);
} catch (Exception $e) {
    echo "\n" . $e->getMessage();
}
echo "\nCreated file {$file_id}.";
```

and monitor it's status with:

```
try {
    $file_info = $emailVerify->getApiFileInfo($file_id);
echo "\nFile status: {$file_info->status}";
} catch (Exception $e) {
    echo "\n" . $e->getMessage();
}
```

When status is `finished` you can download the file (using `$file_info->link2`) and read results.

### Official documentation

[](#official-documentation)

More information can be found in official documentation [here](http://www.emaillistverify.com/docs/index).

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~65 days

Recently: every ~114 days

Total

8

Last Release

3052d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7cfeb27ed5e33496259da7d9f3812b48215dc289d99c57b2a8e8a291176eea71?d=identicon)[korra88](/maintainers/korra88)

---

Top Contributors

[![korra88](https://avatars.githubusercontent.com/u/5181309?v=4)](https://github.com/korra88 "korra88 (28 commits)")

### Embed Badge

![Health badge](/badges/korra88-email-list-verify-api-php-client/health.svg)

```
[![Health](https://phpackages.com/badges/korra88-email-list-verify-api-php-client/health.svg)](https://phpackages.com/packages/korra88-email-list-verify-api-php-client)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
