PHPackages                             calderawp/cf-postmatic - 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. calderawp/cf-postmatic

ActiveLibrary[API Development](/categories/api)

calderawp/cf-postmatic
======================

WordPress API client for ConvertKit API v3

0.1.3(8y ago)7201GPL-2.0+PHPPHP &gt;=5.3.0

Since Jun 14Pushed 8y ago1 watchersCompare

[ Source](https://github.com/CalderaWP/convertkit-api)[ Packagist](https://packagist.org/packages/calderawp/cf-postmatic)[ RSS](/packages/calderawp-cf-postmatic/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (4)DependenciesVersions (5)Used By (0)

ConvertKit API
==============

[](#convertkit-api)

WordPress API client for ConvertKit API v3

This library was developed for use in our [ConvertKit for Caldera Forms plugin](https://calderawp.com/downloads/convertkit-caldera-forms/). It is provided here for other developers to use to build their own intergrations.

For full API docs, see

Requires PHP 5.3 or later.

Installation
============

[](#installation)

`composer require calderawp/convertkit-api`

Examples
========

[](#examples)

Get all forms:
--------------

[](#get-all-forms)

```
    use calderawp\convertKit\forms;

	$client = new forms( $api_key );
	$forms = $client->get_all();

```

Get all sequences:
------------------

[](#get-all-sequences)

```
    use calderawp\convertKit\sequences;

	$client = new sequences( $api_key );
	$sequences = $client->get_all();

```

Add a subscriber to a form:
---------------------------

[](#add-a-subscriber-to-a-form)

```
    use calderawp\convertKit\forms

    $name = 'Hi Roy';
    $client = new forms( $api_key );
    $form = $client->get( $name );
    if( $form ) {
        $client->add( $form->id, [ 'email' => 'roy@roysivan.com' ] );

    }

```

Add a subscriber to a sequence:
-------------------------------

[](#add-a-subscriber-to-a-sequence)

```
    use calderawp\convertKit\sequences;

    $name = 'Hi Roy';
    $client = new forms( $api_key );
    $sequence = $client->get( $name );
    if( $sequence ) {
        $client->add( $sequence->id, [ 'email' => 'roy@roysivan.com' ] );

    }

```

License, Copyright, Etc.
========================

[](#license-copyright-etc)

Copyright 2016 Josh Pollock for CalderaWP LLC. License under the terms of the GPL v2 or later. Some copypasta from  which is GPL :)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity51

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.

###  Release Activity

Cadence

Every ~125 days

Total

4

Last Release

3240d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ca938daf3f2a666cd32c7bdb6e30714da6fe0e6cd5012fe4864b18afae43fbcd?d=identicon)[Shelob9](/maintainers/Shelob9)

---

Top Contributors

[![Shelob9](https://avatars.githubusercontent.com/u/1994311?v=4)](https://github.com/Shelob9 "Shelob9 (18 commits)")

---

Tags

wordpress

### Embed Badge

![Health badge](/badges/calderawp-cf-postmatic/health.svg)

```
[![Health](https://phpackages.com/badges/calderawp-cf-postmatic/health.svg)](https://phpackages.com/packages/calderawp-cf-postmatic)
```

###  Alternatives

[sybrew/the-seo-framework

An automated, advanced, accessible, unbranded and extremely fast SEO solution for any WordPress website.

47078.8k](/packages/sybrew-the-seo-framework)

PHPackages © 2026

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