DEV Community

adithyasrinivasan
adithyasrinivasan

Posted on • Originally published at adithya.dev on

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 - https://arbeitnow.com/blog/job-board-api/

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
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)