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

ActiveLibrary[API Development](/categories/api)

benborla/jobadder-api-client
============================

JobAdder API Client

01PHP

Since Apr 20Pushed 3y agoCompare

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

READMEChangelogDependenciesVersions (1)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 `BenBorla\JobAdder`. The main client is `BenBorla\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 `BenBorla\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 BenBorla\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

13

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 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/2dd498b29c16aad35e4b2a23e73fe942f458ae7ace6ad935883a41559e3daf9d?d=identicon)[benborla](/maintainers/benborla)

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

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

A PHP wrapper for Twilio's API

1.6k92.9M270](/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.1M453](/packages/google-gax)

PHPackages © 2026

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