PHPackages                             tantacula/getresponse - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. tantacula/getresponse

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

tantacula/getresponse
=====================

GetResponse API v3 client library.

0.0.3(8y ago)09MITPHPPHP &gt;=5.2.0

Since Nov 25Pushed 8y agoCompare

[ Source](https://github.com/Tantacula/getresponse-api-php)[ Packagist](https://packagist.org/packages/tantacula/getresponse)[ Docs](https://github.com/Tantacula/getresponse-api-php)[ RSS](/packages/tantacula-getresponse/feed)WikiDiscussions master Synced 2mo ago

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

Overview
--------

[](#overview)

GetResponse API v3 wrapper working on PHP 5.2+. [Here](http://apidocs.getresponse.com/en/v3/) you can find our api documentation.

\##Examples

Standard authorization

```
$getresponse = new GetResponse('your_api_key');
```

\--

Enterprise authorization

```
$getresponse = new GetResponse('your_api_key');
$getresponse->enterprise_domain = 'somedomain.com';

//api URL is relative to your domain UR:
$getresponse->api_url = 'https://api3.getresponse360.pl/v3'; //for PL domains
$getresponse->api_url = 'https://api3.getresponse360.com/v3'; //default
```

\-- Search contacts

```
$result = $getresponse->getContacts(array(
	'query' => array(
		'email' => '@getresponse.com',
	),
	'fields' => 'name,email'
));
```

Add contact

```
$getresponse->addContact(array(
    'name'              => 'Jon Smith',
    'email'             => 'jonsmith@testdomain.com',
    'dayOfCycle'        => 0,
    'campaign'          => array('campaignId' => 'campaign_id_obtained_by_API'),
    'ipAddress'         => '89.206.31.190',
    'customFieldValues' => array(
        array('customFieldId' => 'custom_field_id_obtained_by_API',
            'value' => array(
                'Y'
            )),
         array('customFieldId' => 'custom_field_id_obtained_by_API',
            'value' => array(
                'Y'
            ))
    )
));
```

\-- Send message

```
$result = $getresponse->sendNewsletter(array(
				"subject" => 'Test subject',
				"fromField" => array('fromFieldId' => 'from_field_id'),
				"content" => array(
					'html' => 'Test newsletter contetnt.'
				),
				"sendSettings" => array(
					"selectedContacts" => array('contact_id_obtained_by_API')
			)
    ));
```

\-- Add custom field

```
$getresponse->setCustomField(array(
				'name' => 'custom_name',
				'type' => 'text',
				'hidden' => 'false',
    ));
```

\-- List saved search

```
$result = $getresponse->searchContacts();
```

\-- List new web forms

```
$result = $getresponse->getForms();
```

\-- List old web forms

```
$result = $getresponse->getWebForms();
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~719 days

Total

2

Last Release

3101d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4677e9681a6dd2ed38310ac9832d15c3f8037b579c0322f10c453c62ee7b4084?d=identicon)[Tantacula](/maintainers/Tantacula)

---

Top Contributors

[![Tantacula](https://avatars.githubusercontent.com/u/1346989?v=4)](https://github.com/Tantacula "Tantacula (4 commits)")[![pmaslak](https://avatars.githubusercontent.com/u/4546483?v=4)](https://github.com/pmaslak "pmaslak (3 commits)")[![gstruczynski](https://avatars.githubusercontent.com/u/426227?v=4)](https://github.com/gstruczynski "gstruczynski (1 commits)")[![montewski](https://avatars.githubusercontent.com/u/1552185?v=4)](https://github.com/montewski "montewski (1 commits)")

---

Tags

apiemailgetresponse

### Embed Badge

![Health badge](/badges/tantacula-getresponse/health.svg)

```
[![Health](https://phpackages.com/badges/tantacula-getresponse/health.svg)](https://phpackages.com/packages/tantacula-getresponse)
```

###  Alternatives

[ecomailcz/ecomail

Ecomail.cz API Wrapper

17383.8k4](/packages/ecomailcz-ecomail)[hafael/azure-mailer-driver

Supercharge your Laravel or Symfony app with Microsoft Azure Communication Services (ACS)! Effortlessly add email, chat, voice, video, and telephony-over-IP for next-level communication. 🚀

14109.2k](/packages/hafael-azure-mailer-driver)

PHPackages © 2026

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