# AMS Austria Job Scraper — Austrian Public Employment Service (`blackfalcondata/ams-austria-job-scraper`) Actor

Scrape jobs.ams.at — Austria's official AMS public employment portal, branded "alle jobs" ("all jobs" in German), with live vacancies nationwide searchable by keyword, location, radius, and filters. Every record includes the legally-mandated salary, geo-coordinates, and full company details.

- **URL**: https://apify.com/blackfalcondata/ams-austria-job-scraper.md
- **Developed by:** [Black Falcon Data](https://apify.com/blackfalcondata) (community)
- **Categories:** Jobs, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

### What does AMS Austria Job Scraper do?

AMS Austria Job Scraper extracts structured job data from [jobs.ams.at](https://jobs.ams.at) — including salary data, contact details, company metadata, full descriptions, and location data. It supports keyword search, location filters, and controllable result limits, so you can run the same query consistently over time. The actor also offers detail enrichment (full descriptions, company metadata, and contact information) where the source provides them.

**New to Apify?** [Sign up free](https://console.apify.com/sign-up?fpr=1h3gvi) and use the included $5 monthly platform credit to test this actor.

### Key features

<!-- KEY_FEATURES:START -->
- **🔔 Notifications** — Telegram, Slack, Discord, WhatsApp Cloud API, generic webhook — out of the box. Pair with incremental + `notifyOnlyChanges` for daily "new Jobs jobs" pings to your hiring channel.
- **♻️ Incremental mode** — recurring runs emit only NEW / UPDATED / REAPPEARED records — UNCHANGED and EXPIRED are opt-in. First run builds the baseline; subsequent runs emit and charge only for the diff. Pair with notifications for daily "new jobs" alerts to your hiring team. Saves 80–95% on daily monitoring.
- **📧 Email + phone extraction** — best-effort contact signals mined from each job description: `extractedEmails` and `extractedPhones` surface application emails and phone numbers wherever the employer includes them in the listing text. These are text-mined (not guaranteed for every job), and pair with `extractedUrls` and `socialProfiles`.
- **🔗 URL + social-profile extraction** — every record carries `extractedUrls[]` and structured `socialProfiles { linkedin, twitter, github, … }` parsed from the description — useful when employers drop their careers page or recruiter LinkedIn in-line.
- **📦 Compact mode** — AI-agent and MCP-friendly compact payloads with core fields only — pipe straight into your ATS, salary-benchmarking tool, or LLM context without parsing extras.
- **✂️ Description truncation** — cap description length with `descriptionMaxLength` to control LLM prompt cost and dataset size — set 0 for full descriptions, or any char-limit to trim.
- **📤 Export anywhere** — Download the dataset as JSON, CSV, or Excel from the Apify Console, or stream live via the Apify API and integrations (Make, Zapier, Google Sheets, n8n, …).
- **💰 Structured salary** — many AMS listings state pay in the description text. Where they do, it is parsed into best-effort `salaryMin` / `salaryMax` / `salaryCurrency` / `salaryType` (hourly, monthly, or yearly) — no string parsing on your side. AMS has no structured salary field, so this is text-mined and not present for every job.
<!-- KEY_FEATURES:END -->

### What data can you extract from jobs.ams.at?

Each result includes Core listing fields (`referenceId`, `title`, `occupation`, `allOccupations`, `location`, `postalCode`, `region`, and `country`, and more), detail fields when enrichment is enabled (`description`, `descriptionHtml`, and `descriptionMarkdown`), contact information (`extractedEmails` and `extractedPhones`), and company metadata (`employer`, `employerDescription`, and `employerWebsite`). In standard mode, all fields are always present — unavailable data points are returned as `null`, never omitted. In compact mode, only core fields are returned.

Enable detail enrichment in the input to get richer fields such as full descriptions, company metadata, and contact information where the source provides them.

### Input

The main inputs are a search keyword, an optional location filter, and a result limit. Additional filters and options are available in the input schema.

Key parameters:

- **`query`** — Job title, skill, or company (e.g., 'Softwareentwickler', 'Pflege', 'SAP').
- **`location`** — City, postal code, or region (e.g., 'Wien', 'Graz', '5020'). Aliases like 'locations', 'city', or 'place' are also accepted.
- **`radiusKm`** — Include jobs within this many km around the Location. 0 = exact location only. Requires a Location. The portal's presets are 5, 10, 20, 50, 75, 100 km. (default: `0`)
- **`maxResults`** — Maximum number of job listings to return. Set 0 for unlimited; use carefully because each emitted record is billable. A single search returns at most 10,000 results — narrow the query or location to go deeper. (default: `25`)
- **`mode`** — Full mode returns all matching jobs. Incremental mode classifies records as NEW, UPDATED, UNCHANGED, REAPPEARED, or EXPIRED. The first run for a new search state has no baseline and may emit all matching jobs; later runs emit only changes unless emitUnchanged or emitExpired is enabled. (default: `"full"`)
- **`includeDetails`** — Include the full job description (text/HTML/Markdown) and mined contact info (emails, phones, links) for each listing. AMS returns these in the search response, so there is no extra fetch cost — turn this off only for a lighter record. (default: `true`)
- **`bundesland`** — Pin results to an Austrian federal state. For best performance, combine with a Search Term. (default: `""`)
- **`greenJobsOnly`** — Only return listings the AMS flags as Green Jobs (occupations that help address climate change). (default: `false`)
- **`postedWithin`** — Only jobs updated within this window. (default: `""`)
- **`workingTime`** — Filter by full-time / part-time. (default: `""`)
- **`employmentType`** — Filter by employment relationship. (default: `""`)
- **`sortBy`** — Result ordering. Relevance is the portal default; date sorts newest-first. (default: `"relevance"`)
- ...and 18 more parameters

### Input examples

**Basic search** — Keyword-driven search with a result cap.

→ Full payload per result — all standard fields populated where the source provides them.

```json
{
  "mode": "full",
  "query": "Softwareentwickler",
  "maxResults": 50
}
````

**Filtered search** — Narrow results with advanced filters — only matching jobs are returned.

→ Same field set as basic search; fewer, more relevant rows.

```json
{
  "query": "Softwareentwickler",
  "employmentType": "AA",
  "postedWithin": "LAST_WEEK",
  "maxResults": 100
}
```

**Compact output** — Return only core fields for AI agents and MCP workflows.

→ Small payload with the most important fields — ideal for piping into LLMs without token overhead.

```json
{
  "query": "Softwareentwickler",
  "maxResults": 50,
  "compact": true
}
```

### Output

Each run produces a dataset of structured job records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

### Example job record

```json
{
  "referenceId": "21946034",
  "title": "Softwareentwickler_in C#",
  "employer": "Cops Gesellschaft für angewandte Systemanalyse und Programmierung Ges.m.b.H",
  "occupation": "SoftwareentwicklerIn",
  "allOccupations": [
    "SoftwareentwicklerIn"
  ],
  "location": "Wien,Penzing",
  "postalCode": "1140",
  "region": "Wien",
  "country": "Österreich",
  "lat": 48.19853347600008,
  "lng": 16.27734509100003,
  "isFullTime": true,
  "isPartTime": true,
  "contractType": "ArbeiterInnen/Angestellte",
  "salary": "46000 EUR/yearly",
  "salaryMin": 46000,
  "salaryMax": null,
  "salaryCurrency": "EUR",
  "salaryType": "yearly",
  "publishedDate": "2026-06-15T00:00:00Z",
  "modifiedDate": "2026-06-15T00:00:00Z",
  "requiredEducation": "Lehre/Lehre mit Meisterprüfung",
  "portalUrl": "https://jobs.ams.at/public/emps/e3282504-80d0-3eee-86d6-7006cd2a6c4f",
  "description": "Deine Aufgaben: Du entwickelst mit uns corima, eine universelle Plattform für Backend-/Client-Komponenten in Desktop und WebDu konzipierst und entwickelst neue Module im Backend und FrontendDu bringst...",
  "descriptionHtml": "<p><span class=\"fw-bold\">Deine Aufgaben:</span></p>\n<ul><li class=\"MsoListParagraphCxSpFirst\">Du entwickelst mit uns <span class=\"fst-italic\">corima</span>, eine universelle Plattform für Backend-/Cli...",
  "descriptionMarkdown": "Deine Aufgaben:\n\n- Du entwickelst mit uns corima, eine universelle Plattform für Backend-/Client-Komponenten in Desktop und Web\n- Du konzipierst und entwickelst neue Module im Backend und Frontend\n- D...",
  "employerDescription": "COPS ist ein international tätiges Unternehmen mit Hauptsitz in Wien und Niederlassungen in Deutschland und Tschechien, das sich seit mehr als 40 Jahren erfolgreich auf Beratungsleistungen und die Int...",
  "employerWebsite": null,
  "isGreenJob": false,
  "educationLevels": [
    "Lehre/Lehre mit Meisterprüfung",
    "Matura",
    "Fachhochschule/Universität/pädagogische Hochschule"
  ],
  "jobSource": "Arbeitsmarktservice",
  "geoBoundingBox": null,
  "minSalaryText": "Das Mindestentgelt für die Stelle als Softwareentwickler_in C# beträgt 46.000,00 EUR brutto pro Jahr auf Basis Vollzeitbeschäftigung. Bereitschaft zur Überzahlung.",
  "salaryOverpayment": true,
  "availability": "ab sofort",
  "extractedEmails": [
    "recruiting@copsgmbh.com"
  ],
  "extractedPhones": [],
  "extractedUrls": [],
  "socialProfiles": {
    "linkedin": null,
    "twitter": null,
    "instagram": null,
    "facebook": null,
    "youtube": null,
    "tiktok": null,
    "github": null,
    "xing": null,
    "bluesky": null,
    "threads": null,
    "mastodon": null
  },
  "contentHash": "390b58453433b5349e13e5c140efb8465f8733dc36a8af41d06cf2a44ad5ffbe",
  "scrapedAt": "2026-06-15T12:12:35.442Z",
  "firstSeenAt": null,
  "lastSeenAt": null,
  "changeType": null,
  "isRepost": null,
  "repostOfId": null,
  "repostDetectedAt": null
}
```

In compact mode, output is reduced to core fields: `title`, `employer`, `location`, `region`, `contractType`, `isFullTime`, `isGreenJob`, `startDate`, `publishedDate`, and `salary`.

### How to scrape jobs.ams.at

1. Go to [AMS Austria Job Scraper](https://apify.com/blackfalcondata/ams-austria-job-scraper?fpr=1h3gvi) in Apify Console.
2. Enter a search keyword and optional location filter.
3. Set `maxResults` to control how many results you need.
4. Enable `includeDetails` if you need full descriptions, contact info, company data.
5. Click **Start** and wait for the run to finish.
6. Export the dataset as JSON, CSV, or Excel.

### Use cases

- Extract job data from jobs.ams.at for market research and competitive analysis.
- Track salary trends across regions and categories over time.
- Build outreach lists using contact details and apply URLs from listings.
- Research company hiring patterns, employer profiles, and industry distribution.
- Use structured location data for regional analysis, mapping, and geo-targeting.
- Feed structured data into AI agents, MCP tools, and automated pipelines using compact mode.
- Export clean, structured data to dashboards, spreadsheets, or data warehouses.

### How much does it cost to scrape jobs.ams.at?

AMS Austria Job Scraper uses [pay-per-event](https://docs.apify.com/platform/actors/paid-actors/pay-per-event) pricing. You pay a small fee when the run starts and then for each result that is actually produced.

- **Run start:** $0.01 per run
- **Per result:** $0.002 per job record

Example costs:

- 10 results: **$0.03**
- 25 results: **$0.06**
- 100 results: **$0.21**
- 200 results: **$0.41**
- 500 results: **$1.01**

### FAQ

#### How many results can I get from jobs.ams.at?

The number of results depends on the search query and available listings on jobs.ams.at. Use the `maxResults` parameter to control how many results are returned per run.

#### Can I integrate AMS Austria Job Scraper with other apps?

Yes. AMS Austria Job Scraper works with Apify's [integrations](https://apify.com/integrations?fpr=1h3gvi) to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

#### Can I use AMS Austria Job Scraper with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the [Apify API](https://docs.apify.com/api/v2). Client libraries are available for JavaScript, Python, and other languages.

#### Can I use AMS Austria Job Scraper through an MCP Server?

Yes. Apify provides an [MCP Server](https://apify.com/apify/actors-mcp-server?fpr=1h3gvi) that lets AI assistants and agents call this actor directly. Use compact mode, `descriptionMaxLength`, a single `descriptionFormat`, and `excludeEmptyFields` to keep payloads manageable for LLM context windows.

#### Is it legal to scrape jobs.ams.at?

This actor extracts publicly available data from jobs.ams.at. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

#### Your feedback

If you have questions, need a feature, or found a bug, please [open an issue](https://apify.com/blackfalcondata/ams-austria-job-scraper/issues?fpr=1h3gvi) on the actor's page in Apify Console. Your feedback helps us improve.

### You might also like

- [Actiris Brussels Job Scraper](https://apify.com/blackfalcondata/actiris-scraper?fpr=1h3gvi) — Scrape all active job listings from actiris.brussels — official Brussels public employment service..
- [APEC.fr Scraper - French Executive Jobs](https://apify.com/blackfalcondata/apec-scraper?fpr=1h3gvi) — Scrape apec.fr - French executive job listings with salary ranges, company, location, skills,.
- [Arbeitsagentur Jobs Feed — German Federal Employment Agency](https://apify.com/blackfalcondata/arbeitsagentur-jobs-feed?fpr=1h3gvi) — Scrape arbeitsagentur.de — Germany's official public employment portal with over 1 million live job.
- [Arbeitsagentur Scraper - German Jobs](https://apify.com/blackfalcondata/arbeitsagentur-scraper?fpr=1h3gvi) — Scrape arbeitsagentur.de - Germany’s official employment portal with 1M+ listings. Contact data,.
- [Arbetsformedlingen Job Scraper](https://apify.com/blackfalcondata/arbetsformedlingen-scraper?fpr=1h3gvi) — Scrape arbetsformedlingen.se (Platsbanken) — Sweden's official employment portal. Returns 84.
- [Bayt.com Scraper — MENA Jobs with Salary & Skills Filter](https://apify.com/blackfalcondata/bayt-scraper?fpr=1h3gvi) — Scrape bayt.com — the leading Middle East job board spanning UAE, Saudi Arabia, Qatar, Egypt.
- [Bumeran Scraper — LATAM Jobs across 7 Countries & 8 Brands](https://apify.com/blackfalcondata/bumeran-scraper?fpr=1h3gvi) — Scrape Bumeran Group's job boards across LATAM — Argentina (bumeran.com.ar + zonajobs), Chile.
- [Cadremploi Scraper — French Executive & Management Jobs](https://apify.com/blackfalcondata/cadremploi-scraper?fpr=1h3gvi) — Scrape cadremploi.fr — France's leading job board for executives and managers (cadres). Salary.

### Getting started with Apify

New to Apify? [Create a free account with $5 credit](https://console.apify.com/sign-up?fpr=1h3gvi) — no credit card required.

1. Sign up — $5 platform credit included
2. Open this actor and configure your input
3. Click **Start** — export results as JSON, CSV, or Excel

Need more later? [See Apify pricing](https://apify.com/pricing?fpr=1h3gvi).

# Actor input Schema

## `query` (type: `string`):

Job title, skill, or company (e.g., 'Softwareentwickler', 'Pflege', 'SAP').

## `location` (type: `string`):

City, postal code, or region (e.g., 'Wien', 'Graz', '5020'). Aliases like 'locations', 'city', or 'place' are also accepted.

## `radiusKm` (type: `integer`):

Include jobs within this many km around the Location. 0 = exact location only. Requires a Location. The portal's presets are 5, 10, 20, 50, 75, 100 km.

## `maxResults` (type: `integer`):

Maximum number of job listings to return. Set 0 for unlimited; use carefully because each emitted record is billable. A single search returns at most 10,000 results — narrow the query or location to go deeper.

## `mode` (type: `string`):

Full mode returns all matching jobs. Incremental mode classifies records as NEW, UPDATED, UNCHANGED, REAPPEARED, or EXPIRED. The first run for a new search state has no baseline and may emit all matching jobs; later runs emit only changes unless emitUnchanged or emitExpired is enabled.

## `includeDetails` (type: `boolean`):

Include the full job description (text/HTML/Markdown) and mined contact info (emails, phones, links) for each listing. AMS returns these in the search response, so there is no extra fetch cost — turn this off only for a lighter record.

## `bundesland` (type: `string`):

Pin results to an Austrian federal state. For best performance, combine with a Search Term.

## `greenJobsOnly` (type: `boolean`):

Only return listings the AMS flags as Green Jobs (occupations that help address climate change).

## `postedWithin` (type: `string`):

Only jobs updated within this window.

## `workingTime` (type: `string`):

Filter by full-time / part-time.

## `employmentType` (type: `string`):

Filter by employment relationship.

## `sortBy` (type: `string`):

Result ordering. Relevance is the portal default; date sorts newest-first.

## `skipReposts` (type: `boolean`):

Exclude listings detected as reposts of previously seen jobs.

## `emitUnchanged` (type: `boolean`):

In incremental mode, also emit jobs whose id and last-updated date have not changed since the previous run.

## `emitExpired` (type: `boolean`):

In incremental mode, emit EXPIRED records for previously seen jobs that no longer appear in the current matching result set. This requires scanning the full result set for the configured search.

## `compact` (type: `boolean`):

When true, each result is reduced to the most essential fields — referenceId, title, employer, location, region, publishedDate, contractType, isGreenJob, portalUrl — plus contentHash and changeType for change tracking. The heavy description field is omitted. Use this in AI-agent and MCP workflows where token budgets matter.

## `descriptionMaxLength` (type: `integer`):

Truncate the description field to this many characters, appending '...' if truncated. 0 means no truncation. Use in AI-agent workflows to control context window usage — 200–500 characters is usually enough for an LLM to classify or summarise a job.

## `telegramToken` (type: `string`):

Telegram bot token from @BotFather. Required for Telegram notifications.

## `telegramChatId` (type: `string`):

Telegram chat or channel ID where alerts are sent (e.g. "-100123456789" for a private group, or "@yourchannel").

## `discordWebhookUrl` (type: `string`):

Discord incoming webhook URL. Get one from Server Settings → Integrations → Webhooks.

## `slackWebhookUrl` (type: `string`):

Slack incoming webhook URL. Create at api.slack.com/messaging/webhooks.

## `whatsappPhoneNumberId` (type: `string`):

WhatsApp Business phone number ID from Meta Business Manager (NOT the phone number itself — the numeric ID shown next to your business number). Free service-conversation messages within 24 hours of last user-initiated contact.

## `whatsappAccessToken` (type: `string`):

Meta Cloud API access token with `whatsapp_business_messaging` scope. Get a permanent token from a system user in Meta Business Manager.

## `whatsappTo` (type: `string`):

Recipient phone in E.164 format (e.g. +4366412345678). Recipient must have messaged your business number within the last 24 hours — outside that window, free-form text is rejected by Meta.

## `webhookUrl` (type: `string`):

Generic webhook URL that receives a JSON POST with the full job payload + run metadata. Universal escape hatch for n8n / Make / Zapier / your own backend.

## `webhookHeaders` (type: `object`):

Optional headers (e.g. {"Authorization": "Bearer xyz"}) sent with the webhook POST.

## `notificationLimit` (type: `integer`):

Maximum number of jobs included in each notification message (1–20). Excess jobs are still in the dataset; notifications get a summary line.

## `notifyOnlyChanges` (type: `boolean`):

When Incremental Mode is on, only send notifications for NEW / UPDATED / REAPPEARED jobs. Has no effect outside incremental mode.

## `descriptionFormat` (type: `string`):

Pick a single description representation. `all` keeps every variant; `text` / `html` / `markdown` drop the others.

## `excludeEmptyFields` (type: `boolean`):

Drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards.

## Actor input object example

```json
{
  "query": "Pflege",
  "location": "Wien",
  "radiusKm": 0,
  "maxResults": 5,
  "mode": "full",
  "includeDetails": true,
  "bundesland": "",
  "greenJobsOnly": false,
  "postedWithin": "",
  "workingTime": "",
  "employmentType": "",
  "sortBy": "relevance",
  "skipReposts": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "compact": false,
  "descriptionMaxLength": 0,
  "notificationLimit": 5,
  "notifyOnlyChanges": false,
  "descriptionFormat": "all",
  "excludeEmptyFields": false
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "query": "Softwareentwickler",
    "radiusKm": 0,
    "maxResults": 5,
    "descriptionFormat": "all",
    "excludeEmptyFields": false
};

// Run the Actor and wait for it to finish
const run = await client.actor("blackfalcondata/ams-austria-job-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "query": "Softwareentwickler",
    "radiusKm": 0,
    "maxResults": 5,
    "descriptionFormat": "all",
    "excludeEmptyFields": False,
}

# Run the Actor and wait for it to finish
run = client.actor("blackfalcondata/ams-austria-job-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "query": "Softwareentwickler",
  "radiusKm": 0,
  "maxResults": 5,
  "descriptionFormat": "all",
  "excludeEmptyFields": false
}' |
apify call blackfalcondata/ams-austria-job-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=blackfalcondata/ams-austria-job-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "AMS Austria Job Scraper — Austrian Public Employment Service",
        "description": "Scrape jobs.ams.at — Austria's official AMS public employment portal, branded \"alle jobs\" (\"all jobs\" in German), with live vacancies nationwide searchable by keyword, location, radius, and filters. Every record includes the legally-mandated salary, geo-coordinates, and full company details.",
        "version": "1.1",
        "x-build-id": "16nCZo0I2Ex0NUgOO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/blackfalcondata~ams-austria-job-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-blackfalcondata-ams-austria-job-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/blackfalcondata~ams-austria-job-scraper/runs": {
            "post": {
                "operationId": "runs-sync-blackfalcondata-ams-austria-job-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/blackfalcondata~ams-austria-job-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-blackfalcondata-ams-austria-job-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "title": "🔍 Search Term(s)",
                        "type": "string",
                        "description": "Job title, skill, or company (e.g., 'Softwareentwickler', 'Pflege', 'SAP')."
                    },
                    "location": {
                        "title": "📍 Location",
                        "type": "string",
                        "description": "City, postal code, or region (e.g., 'Wien', 'Graz', '5020'). Aliases like 'locations', 'city', or 'place' are also accepted."
                    },
                    "radiusKm": {
                        "title": "📡 Search Radius (km)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Include jobs within this many km around the Location. 0 = exact location only. Requires a Location. The portal's presets are 5, 10, 20, 50, 75, 100 km.",
                        "default": 0
                    },
                    "maxResults": {
                        "title": "💯 Max Results",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Set 0 for unlimited; use carefully because each emitted record is billable. A single search returns at most 10,000 results — narrow the query or location to go deeper.",
                        "default": 25
                    },
                    "mode": {
                        "title": "⚙️ Mode",
                        "enum": [
                            "full",
                            "incremental"
                        ],
                        "type": "string",
                        "description": "Full mode returns all matching jobs. Incremental mode classifies records as NEW, UPDATED, UNCHANGED, REAPPEARED, or EXPIRED. The first run for a new search state has no baseline and may emit all matching jobs; later runs emit only changes unless emitUnchanged or emitExpired is enabled.",
                        "default": "full"
                    },
                    "includeDetails": {
                        "title": "📋 Include Full Details",
                        "type": "boolean",
                        "description": "Include the full job description (text/HTML/Markdown) and mined contact info (emails, phones, links) for each listing. AMS returns these in the search response, so there is no extra fetch cost — turn this off only for a lighter record.",
                        "default": true
                    },
                    "bundesland": {
                        "title": "🗺️ Federal State (Bundesland)",
                        "enum": [
                            "",
                            "Burgenland",
                            "Kärnten",
                            "Niederösterreich",
                            "Oberösterreich",
                            "Salzburg",
                            "Steiermark",
                            "Tirol",
                            "Vorarlberg",
                            "Wien"
                        ],
                        "type": "string",
                        "description": "Pin results to an Austrian federal state. For best performance, combine with a Search Term.",
                        "default": ""
                    },
                    "greenJobsOnly": {
                        "title": "🌱 Green Jobs Only",
                        "type": "boolean",
                        "description": "Only return listings the AMS flags as Green Jobs (occupations that help address climate change).",
                        "default": false
                    },
                    "postedWithin": {
                        "title": "🕒 Posted Within",
                        "enum": [
                            "",
                            "LAST_WEEK",
                            "LAST_MONTH"
                        ],
                        "type": "string",
                        "description": "Only jobs updated within this window.",
                        "default": ""
                    },
                    "workingTime": {
                        "title": "⏰ Working Time",
                        "enum": [
                            "",
                            "V",
                            "T",
                            "B"
                        ],
                        "type": "string",
                        "description": "Filter by full-time / part-time.",
                        "default": ""
                    },
                    "employmentType": {
                        "title": "📑 Employment Type",
                        "enum": [
                            "",
                            "AA",
                            "LS",
                            "SS"
                        ],
                        "type": "string",
                        "description": "Filter by employment relationship.",
                        "default": ""
                    },
                    "sortBy": {
                        "title": "↕️ Sort By",
                        "enum": [
                            "relevance",
                            "date"
                        ],
                        "type": "string",
                        "description": "Result ordering. Relevance is the portal default; date sorts newest-first.",
                        "default": "relevance"
                    },
                    "skipReposts": {
                        "title": "🚫 Skip Reposts",
                        "type": "boolean",
                        "description": "Exclude listings detected as reposts of previously seen jobs.",
                        "default": false
                    },
                    "emitUnchanged": {
                        "title": "♻️ Emit Unchanged Jobs",
                        "type": "boolean",
                        "description": "In incremental mode, also emit jobs whose id and last-updated date have not changed since the previous run.",
                        "default": false
                    },
                    "emitExpired": {
                        "title": "⚰️ Emit Expired Jobs",
                        "type": "boolean",
                        "description": "In incremental mode, emit EXPIRED records for previously seen jobs that no longer appear in the current matching result set. This requires scanning the full result set for the configured search.",
                        "default": false
                    },
                    "compact": {
                        "title": "📦 Compact Output",
                        "type": "boolean",
                        "description": "When true, each result is reduced to the most essential fields — referenceId, title, employer, location, region, publishedDate, contractType, isGreenJob, portalUrl — plus contentHash and changeType for change tracking. The heavy description field is omitted. Use this in AI-agent and MCP workflows where token budgets matter.",
                        "default": false
                    },
                    "descriptionMaxLength": {
                        "title": "✂️ Description Max Length",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Truncate the description field to this many characters, appending '...' if truncated. 0 means no truncation. Use in AI-agent workflows to control context window usage — 200–500 characters is usually enough for an LLM to classify or summarise a job.",
                        "default": 0
                    },
                    "telegramToken": {
                        "title": "🤖 Telegram Bot Token",
                        "type": "string",
                        "description": "Telegram bot token from @BotFather. Required for Telegram notifications."
                    },
                    "telegramChatId": {
                        "title": "💬 Telegram Chat ID",
                        "type": "string",
                        "description": "Telegram chat or channel ID where alerts are sent (e.g. \"-100123456789\" for a private group, or \"@yourchannel\")."
                    },
                    "discordWebhookUrl": {
                        "title": "🎮 Discord Webhook URL",
                        "type": "string",
                        "description": "Discord incoming webhook URL. Get one from Server Settings → Integrations → Webhooks."
                    },
                    "slackWebhookUrl": {
                        "title": "💼 Slack Webhook URL",
                        "type": "string",
                        "description": "Slack incoming webhook URL. Create at api.slack.com/messaging/webhooks."
                    },
                    "whatsappPhoneNumberId": {
                        "title": "📱 WhatsApp Phone Number ID",
                        "type": "string",
                        "description": "WhatsApp Business phone number ID from Meta Business Manager (NOT the phone number itself — the numeric ID shown next to your business number). Free service-conversation messages within 24 hours of last user-initiated contact."
                    },
                    "whatsappAccessToken": {
                        "title": "🔐 WhatsApp Access Token",
                        "type": "string",
                        "description": "Meta Cloud API access token with `whatsapp_business_messaging` scope. Get a permanent token from a system user in Meta Business Manager."
                    },
                    "whatsappTo": {
                        "title": "📨 WhatsApp Recipient",
                        "type": "string",
                        "description": "Recipient phone in E.164 format (e.g. +4366412345678). Recipient must have messaged your business number within the last 24 hours — outside that window, free-form text is rejected by Meta."
                    },
                    "webhookUrl": {
                        "title": "🪝 Generic Webhook URL",
                        "type": "string",
                        "description": "Generic webhook URL that receives a JSON POST with the full job payload + run metadata. Universal escape hatch for n8n / Make / Zapier / your own backend."
                    },
                    "webhookHeaders": {
                        "title": "🔑 Webhook Headers",
                        "type": "object",
                        "description": "Optional headers (e.g. {\"Authorization\": \"Bearer xyz\"}) sent with the webhook POST."
                    },
                    "notificationLimit": {
                        "title": "📊 Max Jobs Per Notification",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "Maximum number of jobs included in each notification message (1–20). Excess jobs are still in the dataset; notifications get a summary line.",
                        "default": 5
                    },
                    "notifyOnlyChanges": {
                        "title": "🔄 Notify Only New/Updated",
                        "type": "boolean",
                        "description": "When Incremental Mode is on, only send notifications for NEW / UPDATED / REAPPEARED jobs. Has no effect outside incremental mode.",
                        "default": false
                    },
                    "descriptionFormat": {
                        "title": "Description format",
                        "enum": [
                            "all",
                            "text",
                            "html",
                            "markdown"
                        ],
                        "type": "string",
                        "description": "Pick a single description representation. `all` keeps every variant; `text` / `html` / `markdown` drop the others.",
                        "default": "all"
                    },
                    "excludeEmptyFields": {
                        "title": "Exclude empty fields from output",
                        "type": "boolean",
                        "description": "Drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
