Job Board API
1 min read

Job Board API

Easy to use, free Job Board API

A public free Job Board API with jobs from Applicant Tracking Systems

I have just opened up an API for my job board and you can see more information on the link below.

Job Board API
A public free Job Board API with jobs from Applicant Tracking Systems

This could serve as a good starting point for a side project, just like how I did last year for Arbeitnow. If you're using Laravel, you're already familiar with the structure of the API. It's in JSON and supports pagination. To navigate between pages, you can follow the next / prev URLs.

$http = Http::get('https://arbeitnow.com/api/job-board-api');
if ($http->ok()){
 // process the data
}