Overview
Arbeitsamt (Bundesagentur für Arbeit) is the official German federal employment agency API, providing access to millions of job listings across Germany. It uses OAuth 2.0 for authentication and returns rich, structured job data including location, salary hints, and employer details. If you are building a German-market job app, this is the authoritative data source.
Beginner Tip
You will need an OAuth 2.0 client credentials token before making job search requests. The API is publicly accessible — request a token from the bund.dev portal and include it as a Bearer token in your Authorization header.
Available Data
Example Response
{
"title": "Software Engineer",
"company": "Tech Corp",
"location": "Remote",
"salary_range": "$120,000 - $180,000",
"posted_date": "2025-01-10",
"description": "We are looking for an experienced..."
} Field Reference
stellenangebote Array of job offer objects returned by the search. stellenangebote[].titel Job title in German. stellenangebote[].arbeitgeber Name of the employer. stellenangebote[].arbeitsort.ort City or town where the job is located. stellenangebote[].eintrittsdatum Expected start date for the position (ISO 8601 format). maxErgebnisse Total number of matching job offers across all pages. Implementation Example
const url = "https://jobsuche.api.bund.dev/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Upwork
The Upwork API gives developers programmatic access to the Upwork freelance platform, including job listings, freelancer profiles, and contract management.
Adzuna
⭐ Beginner's PickAdzuna is a job board aggregator API that lets you search millions of job listings from across the web in one place.
Arbeitnow
⭐ Beginner's PickArbeitnow is a free, no-auth API that aggregates tech job listings across Europe and remote-friendly roles worldwide.
Careerjet
Careerjet is a global job search engine API that aggregates listings from thousands of job sites and company career pages worldwide.
DevITjobs UK
⭐ Beginner's PickDevITjobs UK is a free job board focused on tech and IT positions in the United Kingdom, providing job listings via an XML feed that requires no authentication.