job.at APIjob.at ↗
Access job listings, search facets, autocomplete, categories, and featured jobs from job.at — Austria's StepStone-powered job platform — via 8 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/da55def2-da19-4f11-8a9d-9f3f53205695/search_jobs?page=1&query=developer&location=Wien' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for job listings by keyword and/or location on job.at. Returns paginated results with job summaries including title, company, location, and description snippet.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination |
| query | string | Job title or keyword to search for (e.g. 'developer', 'Python') |
| location | string | Location to search in (e.g. 'Wien', 'Graz') |
{
"type": "object",
"fields": {
"jobs": "array of job objects with id, title, company, location, date, description_snippet, and url",
"page": "current page number",
"total_hits": "total number of matching jobs, or null if not displayed"
},
"sample": {
"data": {
"jobs": [
{
"id": "20402533",
"url": "https://www.job.at/result?id=20402533",
"date": null,
"title": "Business Development Manager:in (m/w/d)",
"company": "Lithoz GmbH",
"location": "1060 Wien",
"description_snippet": "vor 6 Stunden 1060 Wien Business Development Manager:in (m/w/d) ..."
}
],
"page": 1,
"total_hits": null
},
"status": "success"
}
}About the job.at API
The job.at API exposes 8 endpoints covering job search, listing details, filter facets, autocomplete, categories, and featured positions from Austria's job.at platform. The search_jobs endpoint returns paginated results including job ID, title, company, location, posting date, description snippet, and listing URL, making it straightforward to build job aggregators or monitor Austrian labor market activity.
Search and Listing Data
The search_jobs endpoint accepts optional query and location parameters (e.g. 'developer', 'Wien') and returns an array of job objects — each with id, title, company, location, date, description_snippet, and url — alongside page and total_hits. Pagination is controlled by the page parameter. When total result count is not displayed by the platform, total_hits returns null. The get_job_detail endpoint takes a numeric job id from search results and returns the same core fields for that specific listing.
Filters, Facets, and Autocomplete
get_search_result_facets accepts the same query and location inputs as search and returns available filter dimensions — employment type, industry, working hours, and others — each as an array of label/count pairs. This lets you build dynamic filter UIs or analyze the distribution of job types for a given query. The get_location_suggestions and get_keyword_suggestions endpoints provide autocomplete arrays (text and value fields) for location and job title inputs respectively, useful for search-as-you-type implementations.
Categories, Featured Jobs, and Related Titles
get_job_categories requires no inputs and returns all homepage categories, each with a category name, a url, and a subcategories array of name/url objects representing popular job title groupings. get_featured_jobs returns currently promoted listings with id, title, company, location, and url. get_related_job_titles takes a query (and optional location) and returns alternative job titles with direct search URLs — useful for expanding coverage when building job recommendation or alerting systems.
- Aggregate Austrian job postings by querying
search_jobswith keyword and location filters for a niche job board - Build a dynamic job filter UI using
get_search_result_facetsto show employment type and industry breakdowns - Implement search-as-you-type location fields using
get_location_suggestionsautocomplete results - Monitor featured/promoted positions on job.at over time using
get_featured_jobs - Map the Austrian job market taxonomy by extracting all categories and subcategories from
get_job_categories - Expand job alert coverage by finding synonymous titles via
get_related_job_titlesfor a given role - Track job posting volume per category or keyword using
total_hitsfromsearch_jobsover time
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does job.at have an official developer API?+
What does `get_job_detail` return compared to `search_jobs`?+
get_job_detail returns the same core fields as a search result entry — id, url, date, title, company, location, and description_snippet — for a single listing looked up by its numeric ID. It does not return a full job description body or salary data; it reflects what is available from the listing summary page.Does the API return full job description text or salary information?+
description_snippet (a short excerpt) rather than the full job description body, and salary fields are not exposed. You can fork this API on Parse and revise it to add an endpoint that retrieves the full job detail page content.What facet categories does `get_search_result_facets` return?+
label string and an integer count (or null if the count is not displayed). Facets are scoped to the query and location you provide.Is there a way to retrieve job listings by company name or filter by date?+
search_jobs filters by query keyword and location only; there is no dedicated company or date-range filter parameter exposed. You can fork this API on Parse and revise it to add company-scoped or date-filtered search endpoints.