API Usage Tutorial

1. First, you need to have a client_id and client_secret, if you don't have them, please contact example@example.com.

2. Then call the token API and send client_credentials as the grant_type parameter value and your client_id and client_secret as the client_id and client_secret parameters in the request body

Very Important note

the request body should be in form-data format (OAuth2 client_credentials flow force this!)

An alternative way

You can find the swagger of this API in this URL

Better you know

the password value in grant_type and the username and password parameters are for the OAuth2 password flow, just simply ignore them and don't send them in the request body

3. Now easily call the job search API and pass the received token in the header of the request as Authorization key with a value like [token_type] [token]

An alternative way

You can find the swagger of this API in this URL

Don't forget! first, you need to authenticate with a button like the below one, on top of the swagger page. Login button