Access and Authentication
Introduction
We've organized our APIs around REST commands and use HTTP response codes to indicate successful API calls and those that produce errors. We return all API responses, including errors, as JSON objects.
Our APIs reside at api.intelligence.adzuna.com. When making direct API requests in URL, you must do so over HTTPS. Calls made over standard HTTP will fail. API requests without proper Authentication (a valid API key) will also fail.
https://api.intelligence.adzuna.com
Authentication
All endpoints require ApiKey authentication, using the API key provided by your account manager.
:::info
Don't have an API key? Contact us or speak to your account manager to request one.
:::
To authenticate your request, simple add a Authorization
header to your request:
curl -X GET \
'https://api.intelligence.adzuna.com/v1.1/gb/status' \
-H 'Authorization: Api-Key <<your_api_key>>'
Limits
Good news! We don't impose any throttling or limits on the number of requests 😄
However we do monitor requests to our API and ask that users adopt a fair usage policy.