Adzuna PHP API Client

Project Overview

Use the Adzuna Jobs Provider to connect your PHP application with the Adzuna job board API.

Installation

Use composer: composer require jobapis/jobs-adzuna

Usage

Create a Query object and add all the parameters you’d like via the constructor.

1
2
3
4
5
6
// Add parameters to the query via the constructor
$query = new JobApis\Jobs\Client\Queries\AdjunaQuery([
'app_key' => YOUR_KEY,
'app_id' => YOUR_ID,
'country' => 'gb',
]);

Or via the “set” method. All of the parameters documented in Indeed’s documentation can be added.

1
2
// Add parameters via the set() method
$query->set('what', 'engineering');

You can even chain them if you’d like.

1
2
3
// Add parameters via the set() method
$query->set('where', 'London, UK')
->set('page', '2');

Then inject the query object into the provider.

1
2
// Instantiating the provider with a query object
$client = new JobApis\Jobs\Client\Provider\AdzunaProvider($query);

And call the “getJobs” method to retrieve results.

1
2
// Get a Collection of Jobs
$jobs = $client->getJobs();

The getJobs method will return a Collection of Job objects.

For more detailed usage and documentation, see this project’s readme.