Job search engine
Careerjet is a job search engine allowing users to find job listings globally by keywords and location.
import requests
url = "https://www.careerjet.com/search"
params = {
"keywords": "developer",
"location": "london"
}
response = requests.get(url, params=params)
# Note: This may return HTML, as it hits the website's search page, not a dedicated API endpoint.
print(response.text)Last 50 checks (10 min intervals)