Back to APIs
Arbeitnow
Arbeitnow provides a free API with thousands of remote and EU-based tech job listings, no authentication required.
Base URL
https://www.arbeitnow.com/apiremoteEuropetech jobsfreeno auth
Endpoints
GET
/job-board-apiGet a paginated list of remote tech job listings.
const response = await fetch("https://www.arbeitnow.com/api/job-board-api?page=1", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);Response Preview
{
"data": [{
"slug": "senior-fullstack-engineer-at-acme",
"company_name": "Acme GmbH",
"title": "Senior Full-Stack Engineer",
"location": "Berlin / Remote",
"remote": true,
"tags": ["TypeScript", "React", "Node.js"],
"created_at": 1714000000
}],
"links": { "next": "https://www.arbeitnow.com/api/job-board-api?page=2" }
}