PHPackages                             adterminal/mailchimp-api - 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. adterminal/mailchimp-api

ActiveLibrary[API Development](/categories/api)

adterminal/mailchimp-api
========================

Simplest MailChimp API v3 wrapper

0676PHP

Since Dec 30Pushed 10y ago3 watchersCompare

[ Source](https://github.com/adterminal/mailchimp-api)[ Packagist](https://packagist.org/packages/adterminal/mailchimp-api)[ RSS](/packages/adterminal-mailchimp-api/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

MailChimp API
=============

[](#mailchimp-api)

Simplest MailChimp API v3 wrapper, in PHP.

This lets you get from the MailChimp API docs to the code as directly as possible.

Requires PHP 5.3 and a pulse. Abstraction is for chimps.

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

[](#installation)

You can install mailchimp-api v3 dev branch using Composer:

```
composer require adterminal/mailchimp-api:dev-master

```

You will then need to:

- run `composer install` to get these dependencies added to your vendor directory
- add the autoloader to your application with this line: `require("vendor/autoload.php")`

Alternatively you can just download the MailChimp.php file and include it manually:

```
include('./Mailchimp.php');
```

Examples
--------

[](#examples)

List all the mailing lists (`lists` method)

```
use \Adterminal\MailChimp\MailChimp;

$MailChimp = new MailChimp('abc123abc123abc123abc123abc123-us1');
print_r($MailChimp->get('lists'));
```

Subscribe someone to a list and an interest group

```
use \Adterminal\MailChimp\MailChimp;

$MailChimp = new MailChimp('abc123abc123abc123abc123abc123-us1');
$result = $MailChimp->post('lists/b1234346/members', array(
				'email_address'     => 'davy@example.com',
				'status'			=> 'subscribed',
				'merge_fields'      => array('FNAME'=>'Davy', 'LNAME'=>'Jones'),
				'interests' 		=> array( '2s3a384h' => true )
			));
print_r($result);
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/0663c64e3c533fd7f73231fa2570193250f03dec1166e75461b479144128bb63?d=identicon)[adterminal](/maintainers/adterminal)

---

Top Contributors

[![assadvirgo](https://avatars.githubusercontent.com/u/1374374?v=4)](https://github.com/assadvirgo "assadvirgo (2 commits)")

### Embed Badge

![Health badge](/badges/adterminal-mailchimp-api/health.svg)

```
[![Health](https://phpackages.com/badges/adterminal-mailchimp-api/health.svg)](https://phpackages.com/packages/adterminal-mailchimp-api)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[facebook/php-business-sdk

PHP SDK for Facebook Business

90821.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

74513.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

265103.1M454](/packages/google-gax)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)

PHPackages © 2026

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