PHPackages                             venturocket/venturocket-api-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. venturocket/venturocket-api-php

ActiveLibrary[API Development](/categories/api)

venturocket/venturocket-api-php
===============================

The official PHP client for Venturocket's API

1.0.0(12y ago)09Apache-2.0PHPPHP &gt;=5.3.3

Since Jan 10Pushed 12y ago1 watchersCompare

[ Source](https://github.com/Venturocket/venturocket-api-php)[ Packagist](https://packagist.org/packages/venturocket/venturocket-api-php)[ Docs](https://github.com/Venturocket/venturocket-api-php)[ RSS](/packages/venturocket-venturocket-api-php/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

venturocket-api-php
===================

[](#venturocket-api-php)

The official PHP client library for [Venturocket's API](https://venturocket.com/api/v1).

Usage
-----

[](#usage)

### Installing via [Composer](http://getcomposer.org/)

[](#installing-via-composer)

```
php composer.phar require venturocket/venturocket-api-php:~1.0
```

### Making API calls

[](#making-api-calls)

#### Initialize the client object

[](#initialize-the-client-object)

```
use Venturocket\Api\Venturocket;
use Venturocket\Api\Listing\Listing;
$venturocket = new Venturocket("your-api-key", "your-api-secret");
```

#### Keyword calls

[](#keyword-calls)

```
// retrieve validity and synonym data for a specific keyword
$keyword = $venturocket->keyword()->getKeyword("php");

// retrieve keyword suggestions based on one or more provided keywords
$suggestions = $venturocket->keyword()->getSuggestions(array("php", "python", "java"));

// parse valid keywords from raw text
$text = "We are looking for rock star web developer with expertise in Javascript and PHP.";
$keywords = $venturocket->keyword()->parseKeywords($text);
```

#### Listing calls

[](#listing-calls)

```
// create a Listing
$listing = new Listing("a_user_id", Listing::USER_TYPE_PROVIDER, "Your headline here!");
$listing->addKeyword("php", 400, 102);
$listing->addLocation("94105");
$listing->addListingType(Listing::LISTING_TYPE_FULL_TIME);

$listingId = $venturocket->listing()->createListing($listing);

// retrieve a listing
$retrievedListing = $venturocket->listing()->getListing($listingId);

// update a listing
$retrievedListing['userType'] = Listing::USER_TYPE_SEEKER;
$venturocket->listing()->updateListing($listingId, $retrievedListing);

// disable a listing
$venturocket->listing()->disableListing($listingId);

// enable a listing
$venturocket->listing()->enableListing($listingId);

// retrieve matches for a listing
$matches = $venturocket->listing()->getMatches($listingId);
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

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

4504d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2254b2664ffc343c45b480067d473c9c5912b41452420efe677adc2e75db3621?d=identicon)[jlinn](/maintainers/jlinn)

---

Top Contributors

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

---

Tags

venturocket

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/venturocket-venturocket-api-php/health.svg)

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

###  Alternatives

[rackspace/php-opencloud

PHP SDK for Rackspace/OpenStack APIs

4495.9M38](/packages/rackspace-php-opencloud)[cdaguerre/php-trello-api

Trello API v2 client

255666.7k3](/packages/cdaguerre-php-trello-api)[dchesterton/marketo-rest-api

A PHP client for the Marketo.com REST API

41844.1k1](/packages/dchesterton-marketo-rest-api)[carlosio/geckoboard

A PHP library for dealing with Geckoboard API (http://www.geckoboard.com)

40172.2k](/packages/carlosio-geckoboard)[teepluss/api

Laravel 4 Internal Request (HMVC)

7034.0k](/packages/teepluss-api)[jlinn/mandrill-api-php

A PHP client library for Mandrill's REST API

24117.4k](/packages/jlinn-mandrill-api-php)

PHPackages © 2026

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