APIYard
Back to APIs
JobsAPI KeyFree tier

Adzuna

Search millions of job listings across the US, UK, Germany, Canada, and 12 other countries with salary estimates and company data.

Base URL

https://api.adzuna.com/v1/api
jobssalaryremotetechglobal

Endpoints

GET/jobs/{country}/search/{page}

Search for job listings in a specific country.

const response = await fetch("https://api.adzuna.com/v1/api/jobs/us/search/1?results_per_page=5&what=software+engineer&where=new+york&app_id=YOUR_APP_ID&app_key=YOUR_API_KEY", {
  method: "GET",
  headers: {
  "Content-Type": "application/json",
  "X-API-Key": "YOUR_API_KEY"
  }
});

const data = await response.json();
console.log(data);

Response Preview

{
  "count": 4200,
  "results": [{
    "id": "4872592369",
    "title": "Senior Software Engineer",
    "company": { "display_name": "Acme Corp" },
    "location": { "display_name": "New York, NY" },
    "salary_min": 140000,
    "salary_max": 180000,
    "created": "2024-05-01T10:00:00Z"
  }]
}