aamortimer/indeed

Indeed job search

v1.0.0 2014-07-10 08:50 UTC

This package is not auto-updated.

Last update: 2024-04-08 23:32:00 UTC


README

PHP interface to Indeed job search API.

How to Install

Using Composer (Recommended)

Install the aamortimer/Indeed package:

$ composer require "aamortimer/indeed:dev-master"

Example of Usage

<?php

use aamortimer\Indeed\Indeed;
$indeed = new Indeed(12345);

// Pass a basic search query
$response = $indeed->search('web developer');
print_r($response);

// Pass in more options to the search
$response = $indeed->search(array(
    'q' => 'web developer',
    'l' => 'London',
    'start' => 10,
    'limit' => 3
));
print_r($response);

// Look up job details
$response = $indeed->details(array(
  'jobkeys' => $jobkey
));

Releases

1.0.0 (2014-07-09)

Initial release

  • Query the job search and job details API