Monster.com Jobs RSS feed client
Monster.com’s official API is closed to most users (they have not responded to multiple requests for access), but their RSS feed provides a small subset of their jobs. Unfortunately, results are only from the past 24 hours, so this client won’t work for all applications. Using the client is pretty much the same as most RSS feed providers we support:
1. Install the package via Composer
composer require jobapis/jobs-monster
2. Create a query object with all API parameters
|
|
3. Inject the query object and get jobs
|
|
This will return a Collection of Job objects.
For more detailed usage and documentation, see this project’s readme
The Muse Jobs API client
We also re-released our Muse API client with support for Jobs Common v.2 and the Muse’s v.2 of their API. Their API still does not support a true “keyword” search, but the category field allows you to search by types of jobs. Usage is similar to the above client:
1. Install the package via Composer
composer require jobapis/jobs-muse
2. Create a query object with all API parameters
|
|
3. Inject the query object and get jobs
|
|
This will return a Collection of Job objects.
For more detailed usage and documentation, see this project’s readme