Job Board API Usage Instructions

How to start using Job Board API?

Nevena Sofranic avatar
Written by Nevena Sofranic
Updated over a week ago

Hey, Recrooiters! πŸ‘‹

We're stoked you decided to play around and create your own job board! Recrooit Job Board APIs requires an API key, here is how to find it! πŸ”

  1. Go to your dashboard and copy the API access endpoint from the job board dialog. The API endpoint is used with a GET method.

  2. Copy the provided access token from the second input and add it to your authorization header.

    headers: {
    'Authorization': 'Bearer ' + token
    }

    When fetching data using the bearer token, you should do so server-side and not using XHR to prevent revealing your bearer token to 3rd parties. We also prevent XHR for this API endpoint by preventing CORS.

  3. Response example

    [{
    "id": 102,
    "uuid": "681a60ed-acfe-4dde-83f9-762be9b855b8",
    "description": "<p>Lorem Ipsum is simply dummy text.</p>",
    "title": "Senior Software Engineer",
    "city": "13973",
    "country": "RS",
    "selectionProcess": "<p>Lorem Ipsum.</p>",
    "education": null,
    "experience": 0,
    "benefits": "<p>Lorem Ipsum</p>",
    "requirements": "<p>Lorem Ipsum is simply dummy text.</p>",
    "referralFee": 825305,
    "maxSalary": 81595606,
    "minSalary": 1593605,
    "maxEquity": 77,
    "minEquity": 25,
    "tags": ["PHP", "MySQL"],
    "state": "active",
    "isRemote": false,
    "type": "fullTime",
    "createdAt": "2021-11-14T12:23:11.828Z",
    "updatedAt": "2021-11-14T12:23:55.741Z",
    "isJobBoardFeatured": false,
    "inJobBoard": true,
    "company": "My company",
    }
    ...
    ]

  4. Brag

We'd love to know what you're building and help you promote it! If you made something awesome using our API, drop us a line at hello@recrooit.com and tell us all about it.


Something we didn't cover?

We've tried to cover as much as possible in this guide, but there is always room for improvement. If we missed something, or you'd like to simply share your ideas, love and support, email us at support@recrooit.com

Someone will be in touch with you in no time. ✌️

Did this answer your question?