PHPackages                             elliotboney/thinkific-php - 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. elliotboney/thinkific-php

ActiveLibrary[API Development](/categories/api)

elliotboney/thinkific-php
=========================

PHP SDK for interacting with the Thinktastic LMS Api

866014PHP

Since Jan 9Pushed 6y ago2 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Thinkific PHP SDK
=================

[](#thinkific-php-sdk)

[![Dependency Status](https://camo.githubusercontent.com/df8d26c215136016984e8f130d70f41f38dd52556597b7da109bf7693a5f4782/68747470733a2f2f626574612e67656d6e617369756d2e636f6d2f6261646765732f6769746875622e636f6d2f656c6c696f74626f6e65792f7468696e6b696669632d7068702e737667)](https://beta.gemnasium.com/projects/github.com/elliotboney/thinkific-php)

This is under heavy construction and in early alpha stages. It is an sdk to help interact with the [Thinkific LMS](http://www.thinkific.com/) API. The documentation for that REST Api can be found [here](https://api.thinkific.com/documentation).

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

[](#installation)

#### Bleeding Edge

[](#bleeding-edge)

During your development, you can keep up with the latest changes on the master branch by setting the version requirement for thinkific-api to `dev-master`

```
{
   "require": {
      "elliotboney/thinkific-php": "dev-master"
   }
}
```

#### Via command line:

[](#via-command-line)

```
composer require elliotboney/thinkific-php
```

Usage
-----

[](#usage)

Create a client for interacting with the API:

```
$think = new \Thinkific\Thinkific ( [
   'apikey'    => 'your-api-key',
   'subdomain' => 'yoursubdomain',
   'debug'     => true
   ] );
```

### Endpoints

[](#endpoints)

You can reach the following endpoints:

- Bundles
- Collections
- Coupons
- Course reviews
- Courses
- Enrollments
- Orders
- Products
- Promotions
- Users

by using the following scheme:

```
// Create interface to access Users endpoint
$users = $think->users();

// Create interface to access Bundles endpoint
$bundles = $think->bundles();
// etc, etc
```

### Methods

[](#methods)

The classes have the basic requests for GET, PUT, POST, DELETE with the Id parameter as well a getAll. If the endpoint doesn't support the call, an `ApiException()` will be thrown. Some examples of accessing these endpoints:

```
// Get all users
$users = $users->getAll();

// Get a specific user
$users->getById(1234);

// Add a user
$users->add([
    "first_name" => "John",
    "last_name" => "Doe",
    "email"=>"johndoe@example.com",
    "roles"=>[]
  ]);

// Update a user
$users->update( 1234, [
    "first_name" => "John",
    "last_name" => "Doe",
    "email"=>"johndoe@example.com",
    "roles"=>[]
  ]);

// Delete a user
$users->delete( 1234);
```

For more details of which endpoints support which, please make sure you look through the [Thinkific API Docs](https://api.thinkific.com/documentation).

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 Bus Factor1

Top contributor holds 78.4% 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

---

Top Contributors

[![elliotboney](https://avatars.githubusercontent.com/u/2795952?v=4)](https://github.com/elliotboney "elliotboney (29 commits)")[![kanasite](https://avatars.githubusercontent.com/u/985129?v=4)](https://github.com/kanasite "kanasite (7 commits)")[![chrissound](https://avatars.githubusercontent.com/u/1499652?v=4)](https://github.com/chrissound "chrissound (1 commits)")

### Embed Badge

![Health badge](/badges/elliotboney-thinkific-php/health.svg)

```
[![Health](https://phpackages.com/badges/elliotboney-thinkific-php/health.svg)](https://phpackages.com/packages/elliotboney-thinkific-php)
```

###  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.9M271](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

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

PHP wrapper for the Meilisearch API

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

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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