Authentication
All API requests must be authenticated using a Bearer Token.
How to Authenticate
Include your API key in the Authorization header of every request:
Authorization: Bearer your_api_key_hereExample
curl https://api.easyfind.jobs/vendor/vacancies \
-H "Authorization: Bearer your_api_key_here" \
-H "Accept: application/json"Errors
| Status | Cause |
|---|---|
401 | Token missing or invalid |
403 | Company account is suspended or inactive |
See Error Codes for full details.