Discover/Jobware API
live

Jobware APIjobware.de ↗

Search German job postings on Jobware.de by keyword, location, and filters. Fetch full job descriptions, salary, and apply URLs via 2 structured endpoints.

Endpoint health
verified 1h ago
search_jobs
get_job
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

What is the Jobware API?

The Jobware.de API provides 2 endpoints for accessing job postings on one of Germany's established job boards. Use search_jobs to query openings by keyword, location, experience level, and working-time type, receiving up to 20 job cards per page with title, company, labels, and job IDs. Use get_job to retrieve the full posting — including plain-text description, salary data, employer details, and apply URL — for any job ID returned by search.

This call costs2 credits / call— charged only on success
Try it
1-based result page; each page holds up to 20 jobs.
Result ordering.
Free-text search: job title, keyword or company name. Omitted = no keyword restriction.
Kind of posting to list (regular jobs, internships/working-student positions, or apprenticeships).
City name or German postal code to search around. Omitted = whole site (no location restriction).
Search radius around `location` in kilometres; the site accepts 25, 50, 75 or 100. Ignored when no location is given.
Comma-separated experience-level filters, any of entry (0 years), professional (1-2 years), senior (3-7 years), lead (7+ years). Omitted = no experience filter.
Comma-separated working-time filters, any of full_time, part_time, remote (e.g. full_time,remote). Multiple values are OR-ed by the site. Omitted = no working-time filter.
→ api.parse.bot/scraper/f10248bd-7acf-4b35-8f42-aaef9a3aeec6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f10248bd-7acf-4b35-8f42-aaef9a3aeec6/search_jobs?query=Softwareentwickler&location=Berlin' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Searches job openings on Jobware. Returns one page of up to 20 job cards (title, company, location, labels such as working-time tags, publication timestamp, logo, detail URL and job_id) together with the site's total result count and page count. All inputs are optional; with none given the endpoint returns the site-wide listing. Paging is caller-controlled via `page` (1-based, omitted = first page); `has_more` is true while further pages exist and a page past the end returns an empty `jobs` list with the total still reported. Filters and the search radius are passed to the site, and the returned `heading` echoes how the site interpreted them. Some cards (`requires_login: true`) belong to postings whose full detail page is only shown to signed-in users; the card data is still returned here. `experience` is passed through to the site but its effect could not be confirmed from the page heading during testing.

Input
ParamTypeDescription
pageinteger1-based result page; each page holds up to 20 jobs.
sortstringResult ordering.
querystringFree-text search: job title, keyword or company name. Omitted = no keyword restriction.
ad_typestringKind of posting to list (regular jobs, internships/working-student positions, or apprenticeships).
locationstringCity name or German postal code to search around. Omitted = whole site (no location restriction).
radius_kmintegerSearch radius around `location` in kilometres; the site accepts 25, 50, 75 or 100. Ignored when no location is given.
experiencestringComma-separated experience-level filters, any of entry (0 years), professional (1-2 years), senior (3-7 years), lead (7+ years). Omitted = no experience filter.
working_timestringComma-separated working-time filters, any of full_time, part_time, remote (e.g. full_time,remote). Multiple values are OR-ed by the site. Omitted = no working-time filter.
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job cards on this page",
    "page": "integer, the page returned",
    "heading": "the site's result heading, reflecting the interpreted query, location, radius and filters",
    "has_more": "boolean, true when a later page exists",
    "page_size": "integer, maximum jobs per page (20)",
    "total_pages": "integer number of pages available for this search",
    "jobs[].is_new": "boolean, true when the site marks the card as new",
    "jobs[].job_id": "string numeric posting id; pass unchanged to get_job",
    "jobs[].labels": "array of working-time tags shown on the card (e.g. Vollzeit, Teilzeit, Home-Office); may be empty",
    "total_results": "integer total number of matching postings reported by the site",
    "jobs[].logo_url": "absolute employer logo URL or null",
    "jobs[].published_at": "ISO-8601 UTC publication timestamp",
    "jobs[].requires_login": "boolean, true when the detail page is only shown to signed-in users"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "url": "https://www.jobware.de/job/softwareentwickler-net-wpf-im-umfeld-mobiler-arbeitsmaschinen-m-w-d-2047092185",
          "title": "Softwareentwickler .NET / WPF im Umfeld mobiler Arbeitsmaschinen (m/w/d)",
          "is_new": false,
          "job_id": "2047092185",
          "labels": [
            "Vollzeit"
          ],
          "company": "HYDAC Group",
          "location": "Großbeeren bei Berlin",
          "logo_url": "https://www.jobware.de/jobresources/logo/395/34395/827/008275827/32/logo.gif",
          "published_at": "2026-09-22T05:00:00.000Z",
          "requires_login": false
        },
        {
          "url": "https://www.jobware.de/job/softwareentwickler-m-w-d-allgemeinen-2057254275",
          "title": "Softwareentwickler (m/w/d) Allgemeinen",
          "is_new": true,
          "job_id": "2057254275",
          "labels": [
            "Vollzeit"
          ],
          "company": "PerZukunft Arbeitsvermittlung GmbH & Co. KG",
          "location": "Berlin (DE)",
          "logo_url": null,
          "published_at": "2026-09-25T01:05:23.000Z",
          "requires_login": true
        }
      ],
      "page": 1,
      "heading": "Jobs für „Softwareentwickler“ in Berlin",
      "has_more": true,
      "page_size": 20,
      "total_pages": 4,
      "total_results": 79
    },
    "status": "success"
  }
}

About the Jobware API

Search Jobs

The search_jobs endpoint accepts any combination of query (free-text keyword or company name), location (German city or postal code), and radius_km (25, 50, 75, or 100 km). Results can be filtered by ad_type to target regular positions, internships, or apprenticeships, and narrowed by experience (entry, professional, senior) and working_time (full_time, part_time, remote) — both accept comma-separated values for multi-value filtering. Each page returns up to 20 job cards (page_size: 20) with fields including job_id, title, labels (e.g. Vollzeit, Home-Office), is_new flag, publication timestamp, logo URL, and the posting's detail URL. The response also includes total_results, total_pages, and has_more for pagination control.

Fetch a Full Job Posting

The get_job endpoint takes a job_id string (as returned in search_jobs results) and returns the complete structured posting. Key response fields include posting.description (full plain-text job description), posting.salary (object with currency, value, and unit when advertised), posting.address (locality, postal_code, region, country), posting.apply_url, posting.date_posted, posting.labels, and employer name, website, and logo. The requires_login boolean signals when a posting is only visible to signed-in Jobware users; in that case posting is null.

Coverage and Scope

Jobware.de is a German-language job board, so postings are primarily in Germany with some listings in Austria and Switzerland. All filter values map to Jobware's own taxonomy — for example, experience levels (entry, professional, senior) and working_time values (full_time, part_time, remote) directly correspond to the site's available filter options. The heading field in search_jobs responses reflects the site's own interpreted query label, which can be useful for confirming how location and keyword inputs were resolved.

Reliability & maintenanceVerified

The Jobware API is a managed, monitored endpoint for jobware.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jobware.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official jobware.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate German job market data by querying search_jobs with specific query and location inputs to track posting volumes over time.
  • Build a job alert system that polls search_jobs with is_new: true cards to surface recently added postings for a given keyword.
  • Display salary benchmarks by collecting posting.salary fields from get_job across a role category and region.
  • Filter remote or part-time openings in a specific city by combining location, radius_km, and working_time=remote,part_time in search_jobs.
  • Populate a job aggregator with full descriptions and apply links by chaining search_jobs pagination with get_job for each returned job_id.
  • Source apprenticeship listings in a target postal code by setting ad_type to the apprenticeship option and providing a location value.
  • Identify companies actively hiring in a niche by scanning jobs[].company fields across multiple search_jobs result pages.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Jobware.de have an official developer API?+
Jobware.de does not publish a public developer API or documented data feed for third-party access. This Parse API is the structured way to retrieve job data from the site.
What does `get_job` return when a posting requires a login?+
When the site restricts a posting to signed-in users, requires_login is set to true and posting is null. All other fields — url and job_id — are still returned so you can record which postings are gated.
Can I filter search results by multiple experience levels or working-time types at once?+
Yes. Both experience and working_time accept comma-separated values in a single request. For example, passing working_time=full_time,remote returns postings tagged with either full-time or remote working arrangements.
Does the API cover job postings from outside Germany?+
Jobware.de is a German-language board; the majority of postings are in Germany, with some in Austria and Switzerland. Listings from other countries are not covered. You can fork this API on Parse and revise it to target other regional job boards if broader geographic coverage is needed.
Can I retrieve company profiles or recruiter contact details beyond what's in a job posting?+
Not currently. The API returns employer name, website, and logo as part of get_job, but standalone company profiles, recruiter directories, or contact data outside individual postings are not exposed. You can fork it on Parse and revise to add an endpoint targeting employer profile pages if that data is needed.
Page content last updated . Spec covers 2 endpoints from jobware.de.
Related APIs in JobsSee all →