PHPackages                             jordanandree/resumator-api - 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. jordanandree/resumator-api

ActiveLibrary[API Development](/categories/api)

jordanandree/resumator-api
==========================

Jazz (Resumator) API PHP Wrapper

0.4.0(10y ago)68953[1 issues](https://github.com/jordanandree/resumator-api/issues)MITPHPPHP &gt;=5.2.0

Since May 30Pushed 9y ago1 watchersCompare

[ Source](https://github.com/jordanandree/resumator-api)[ Packagist](https://packagist.org/packages/jordanandree/resumator-api)[ RSS](/packages/jordanandree-resumator-api/feed)WikiDiscussions master Synced today

READMEChangelog (3)Dependencies (1)Versions (10)Used By (0)

Jazz (Resumator) API PHP
========================

[](#jazz-resumator-api-php)

[![Build Status](https://camo.githubusercontent.com/2744d1df9af0e34089e283bd07e44ab7d413a53445c92ccfff59a5c1da17c2c2/68747470733a2f2f7472617669732d63692e6f72672f6a6f7264616e616e647265652f6a617a7a2d6170692e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/jordanandree/jazz-api)

PHP API wrapper for the [Jazz API](http://www.resumatorapi.com/).

Usage
=====

[](#usage)

Check out the [examples](examples) for a sample job listing implementation.

#### Minimal Example

[](#minimal-example)

```
require "jazz-api/lib/jazz.php";

// setup with your API Key
$jazz = new Jazz("YOUR_API_KEY");

// return all Jobs
$jobs = $jazz->getJobs();

// return all Jobs without caching
$jobs = $resumator->getJobs();

// get a single Job
$job = $jazz->getJob($jobs[0]->id);

// create a job
$job_fields = array(
  "title"          => "New Job",
  "hiring_lead_id" => "YOUR_ID",
  "description"    => "Join us!",
  "job_status"     => 2 // draft status
);
$new_job = $jazz->postJob($job_fields);
```

#### Caching

[](#caching)

The caching mechanism can be configured and toggled on or off prior to making any API calls. By design, caching is only available for GET API calls.

**Examples:**

```
require "jazz-api/lib/jazz.php";

// setup with your API Key
$jazz = new Jazz("YOUR_API_KEY");

// set the default caching cache file expiration time (in seconds)
$jazz->cache['EXPIRES'] = 604800; // 1 week

// set the cache file save path
$jazz->cache['PATH'] = __DIR__ . DIRECTORY_SEPARATOR . "cache" . DIRECTORY_SEPARATOR;

// disable caching
$jazz->cache['ENABLED'] = false;

// enable caching
$jazz->cache['ENABLED'] = true;
```

### Composer

[](#composer)

- Add the `jordanandree/jazz-api`: `@stable` into the require section of your composer.json.
- Run `composer install`.
- The example will look like this:

```
if (($loader = require_once __DIR__ . '/vendor/autoload.php') == null)  {
  die('Vendor directory not found, Please run composer install.');
}

$jazz = new Jazz("YOUR_API_KEY");
```

Tests
=====

[](#tests)

Tests are a work-in-progress and coverage could be better.

You can run tests like so:

```
phpunit tests/tests.php
```

Contributing
============

[](#contributing)

1. Fork it (  )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75.8% 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 ~66 days

Recently: every ~131 days

Total

9

Last Release

3888d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/235503?v=4)[Jordan Andree](/maintainers/jordanandree)[@jordanandree](https://github.com/jordanandree)

---

Top Contributors

[![mc-jordan-andree](https://avatars.githubusercontent.com/u/42582128?v=4)](https://github.com/mc-jordan-andree "mc-jordan-andree (25 commits)")[![RobWiddick](https://avatars.githubusercontent.com/u/979864?v=4)](https://github.com/RobWiddick "RobWiddick (5 commits)")[![jordanandree](https://avatars.githubusercontent.com/u/235503?v=4)](https://github.com/jordanandree "jordanandree (3 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jordanandree-resumator-api/health.svg)

```
[![Health](https://phpackages.com/badges/jordanandree-resumator-api/health.svg)](https://phpackages.com/packages/jordanandree-resumator-api)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k12](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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