Adzuna Job Board Api Client Released

2016-10-18

Our latest PHP job board client is for Adzuna a largely European job board with a private API for registered partners. You can register to use Adzuna’s API here, and get started using this API client by including the package in your project’s composer file:

1
composer require jobapis/jobs-adzuna

As with all Jobs Common providers, you just need to create a Query:

1
2
3
4
5
6
7
$query = new JobApis\Jobs\Client\Queries\AdzunaQuery([
'what' => 'engineering',
'where' => 'London, UK',
'page' => '1',
'app_id' => YOUR_APP_ID,
'app_key' => YOUR_APP_KEY,
]);

And inject it into the AdzunaProvider:

1
2
$client = new JobApis\Jobs\Client\Provider\AdzunaProvider($query);
$jobs = $client->getJobs();

This will return a Collection of Job objects.

For more detailed usage and documentation, see this project’s readme, and as always, feel free to contact us if you’d like to get involved.