PHPackages                             mjacobus/lever-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. mjacobus/lever-api-client

ActiveLibrary[API Development](/categories/api)

mjacobus/lever-api-client
=========================

Api client for lever

v1.0(10y ago)523.1k↓12.5%3MITPHPPHP &gt;=5.5

Since Mar 1Pushed 10y agoCompare

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

READMEChangelogDependencies (5)Versions (2)Used By (0)

Lever Client
============

[](#lever-client)

This is a WIP Lever client. Documentation [here](https://hire.lever.co/developer/documentation).

Code information:

[![Build Status](https://camo.githubusercontent.com/78ef13d297a5b40ec07e71726f99550e34e72923dd41133c85eac7c79c288733/68747470733a2f2f7472617669732d63692e6f72672f6d6a61636f6275732f6c657665722d6170692d636c69656e742e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/mjacobus/lever-api-client)[![Coverage Status](https://camo.githubusercontent.com/ba11f0522b7303fb5355c4af28348d6ff5a8c6ca3407f82042e1499d6d4a62fc/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6d6a61636f6275732f6c657665722d6170692d636c69656e742f62616467652e706e67)](https://coveralls.io/r/mjacobus/lever-api-client)[![Code Climate](https://camo.githubusercontent.com/e169b40d62ced23eccdf8a63d3c9587be6f73ee3d89cf957b23083cdd81d56f6/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f6d6a61636f6275732f6c657665722d6170692d636c69656e742e706e67)](https://codeclimate.com/github/mjacobus/lever-api-client)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/0a4a8f565fee3eb1810ff31872f7cd472a3acda003fbc29403508425fa0fae45/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d6a61636f6275732f6c657665722d6170692d636c69656e742f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/mjacobus/lever-api-client/?branch=master)[![StyleCI](https://camo.githubusercontent.com/3cce14b446abb473641a02db89205e7848e2f01f21ae84f31fcc461102b9d95a/68747470733a2f2f7374796c6563692e696f2f7265706f732f34353236303730322f736869656c64)](https://styleci.io/repos/45260702)

Package information:

[![Latest Stable Version](https://camo.githubusercontent.com/8c080015f70a0c183d2842d0b2f079d02380321586ac20f720699d8fdf989c6a/68747470733a2f2f706f7365722e707567782e6f72672f6d6a61636f6275732f6c657665722d6170692d636c69656e742f762f737461626c652e737667)](https://packagist.org/packages/mjacobus/lever-api-client)[![Total Downloads](https://camo.githubusercontent.com/2c33c6fca8c258557b8f950afd5f1ad4ce46938b5f44e1393831d6044866b64f/68747470733a2f2f706f7365722e707567782e6f72672f6d6a61636f6275732f6c657665722d6170692d636c69656e742f646f776e6c6f6164732e737667)](https://packagist.org/packages/mjacobus/lever-api-client)[![Latest Unstable Version](https://camo.githubusercontent.com/321c5783caebb4d4329548427cc8a1ebb6dbdd628e2ed466162f2156d321b354/68747470733a2f2f706f7365722e707567782e6f72672f6d6a61636f6275732f6c657665722d6170692d636c69656e742f762f756e737461626c652e737667)](https://packagist.org/packages/mjacobus/lever-api-client)[![License](https://camo.githubusercontent.com/6302f27181e97cedeaac8bd763ca05655674e57430d3b8fe9560064a4220157a/68747470733a2f2f706f7365722e707567782e6f72672f6d6a61636f6275732f6c657665722d6170692d636c69656e742f6c6963656e73652e737667)](https://packagist.org/packages/mjacobus/lever-api-client)[![Dependency Status](https://camo.githubusercontent.com/c3cc7b8cc18512992349d9363d0776c209f171394c6b738d9dc43c3f676890c6/68747470733a2f2f67656d6e617369756d2e636f6d2f6d6a61636f6275732f6c657665722d6170692d636c69656e742e706e67)](https://gemnasium.com/mjacobus/lever-api-client)

Installing
----------

[](#installing)

### Installing via Composer

[](#installing-via-composer)

Append the lib to your requirements key in your composer.json.

```
composer require mjacobus/lever-api-client
```

Usage
-----

[](#usage)

```
use Lever\Api\Client;

$client = new Client([
    'authToken' => '{myApiToken}',
]);

$postings = $client->get('/postings', [
    'limit' => 100,
]);
```

Issues/Features proposals
-------------------------

[](#issuesfeatures-proposals)

[Here](https://github.com/mjacobus/lever-api-client/issues) is the issue tracker.

Contributing
------------

[](#contributing)

Only tested code will be accepted. Please follow fix the style guide.

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

### How to run the tests:

[](#how-to-run-the-tests)

```
./vendor/bin/phpunit
```

### To check the code standard run:

[](#to-check-the-code-standard-run)

```
# Fixes code
./bin/php-cs-fix.sh

# outputs error
./bin/php-cs-fix.sh src true
./bin/php-cs-fix.sh test true
```

Lincense
--------

[](#lincense)

This software is distributed under the [MIT](MIT-LICENSE) license.

Authors
-------

[](#authors)

- [Marcelo Jacobus](https://github.com/mjacobus)

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity58

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

Unknown

Total

1

Last Release

3730d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/226834?v=4)[Marcelo Jacobus](/maintainers/mjacobus)[@mjacobus](https://github.com/mjacobus)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/mjacobus-lever-api-client/health.svg)

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

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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