PHPackages                             varspool/jobadder-api-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. varspool/jobadder-api-client

ActiveLibrary[API Development](/categories/api)

varspool/jobadder-api-client
============================

JobAdder API Client

0.0.6(9y ago)720.4k5[3 issues](https://github.com/varspool/jobadder-api-client/issues)[1 PRs](https://github.com/varspool/jobadder-api-client/pulls)MITPHPPHP &gt;=7.1.0

Since May 4Pushed 7y ago1 watchersCompare

[ Source](https://github.com/varspool/jobadder-api-client)[ Packagist](https://packagist.org/packages/varspool/jobadder-api-client)[ RSS](/packages/varspool-jobadder-api-client/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (9)Versions (7)Used By (0)

jobadder-api-client
===================

[](#jobadder-api-client)

A PHP API client for [JobAdder](https://jobadder.com/), produced via [jane-openapi](https://github.com/janephp/openapi/)

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

[](#installation)

```
composer require varspool/jobadder-api-client
```

Usage
-----

[](#usage)

The namespace is `Varspool\JobAdder`. The main client is `Varspool\JobAdder\Client`. The Client class provides access to a set of API resources:

```
$contacts = $client->contacts()->findContacts(['limit' => 3]);
$ads = $client->jobAds()->getJobAds();
```

You can also access the resources directly from the `Varspool\JobAdder\V2\Resource` namespace.

### Instantiating a Client

[](#instantiating-a-client)

The Client (and any Resource objects you create yourself) need to be given a configured HTTP client to be able to communicate with JobAdder. This HTTP client should implement the `HttpClient` or the `HttpAsyncClient` from [HTTPlug](http://docs.php-http.org/en/latest/httplug/introduction.html). There are HTTPPlug adapters for most popular HTTP clients in PHP (e.g. Guzzle)

Here's how you might use a Guzzle 6 client with this library:

- Install the Guzzle adapter: `composer require php-http/guzzle6-adapter`
- Pass the Guzzle client into the JobAdder client via an adapter:

    ```
    use GuzzleHttp\Client as GuzzleClient;
    use Varspool\JobAdder\Client as JobAdderClient;
    use Http\Adapter\Guzzle6\Client as GuzzleAdapter;

    $guzzle = new GuzzleClient($options);
    $http = new GuzzleAdapter($guzzle);
    $jobadder = new JobAdderClient($http);
    ```

### OAuth and the Authorization header

[](#oauth-and-the-authorization-header)

Because the client is injected, you can configure things like the base URI (you should probably use the `api` part of the OAuth response from JobAdder), and the Authorization header:

```
// Get these both from the OAuth token response
$api = 'https://localapi.jobadder.com/v2';
$token = 'abcdef01234567890';

$guzzle = new GuzzleClient([
    'base_uri' => $api,
    'headers' => [
        'Authorization' => 'Bearer ' . $token
    ]
]);
```

Note that this client doesn't deal with the OAuth flow; it can take over once you have a valid access token.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance11

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

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

Total

6

Last Release

3290d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/97427?v=4)[Dominic Scheirlinck](/maintainers/dominics)[@dominics](https://github.com/dominics)

---

Tags

jane-openapijobadderphp

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/varspool-jobadder-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/varspool-jobadder-api-client/health.svg)](https://phpackages.com/packages/varspool-jobadder-api-client)
```

###  Alternatives

[symfony/symfony

The Symfony PHP framework

31.4k86.9M2.2k](/packages/symfony-symfony)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.8M712](/packages/sylius-sylius)[algolia/algoliasearch-client-php

API powering the features of Algolia.

69734.4M144](/packages/algolia-algoliasearch-client-php)[tempest/framework

The PHP framework that gets out of your way.

2.2k31.1k12](/packages/tempest-framework)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M524](/packages/shopware-core)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.7k371.6k6](/packages/theodo-group-llphant)

PHPackages © 2026

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