# Austria Contract Awards & Tender Awards Scraper (`publicdataworks/austria-contract-awards-scraper`) Actor

Austria contract awards and tender awards scraper for Austrian public procurement: track USP award notices, buyers, contract values, CPV categories, procedures, and award dates.

- **URL**: https://apify.com/publicdataworks/austria-contract-awards-scraper.md
- **Developed by:** [Robert Günther](https://apify.com/publicdataworks) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## Austria Contract Awards & Tender Awards Scraper

Track Austrian public **contract award notices** and **tender awards Austria** from the official **USP Ausschreibungssuche**. Use this Austria contract awards scraper to analyze who wins public contracts, which buyers are spending, and which CPV categories are active.

### Best for

- Public-sector sales intelligence
- Competitor and supplier monitoring
- Procurement market research
- Contract value and CPV analysis
- Finding buyers that recently awarded IT, construction, energy, consulting, or service contracts
- Feeding CRMs, spreadsheets, BI tools, and AI agents with structured award data

### What you get

- Award title
- Public buyer / contracting authority
- Publication date
- Contract conclusion date where available
- Contract value where available
- CPV code and CPV description
- Procedure type and contract type
- Number of offers where available
- SME participation where available
- Reference number and buyer register number
- Official USP detail URL and source URL

### Example input

```json
{
  "query": "software",
  "maxItems": 100,
  "includeDetails": true,
  "fromDate": "2026-01-01",
  "noticeKinds": ["award"]
}
```

### Useful searches

```json
{ "query": "software" }
{ "query": "SAP" }
{ "query": "photovoltaik" }
{ "query": "sanierung" }
{ "query": "elektroarbeiten" }
{ "query": "beratungsleistung" }
```

### Output example

```json
{
  "title": "Abruf aus Rahmenvereinbarung",
  "buyer": "ÖBB Business Competence Center GmbH",
  "publishedDate": "2026-07-03",
  "noticeKind": "award",
  "contractConclusionDate": "26.06.2026",
  "cpvCode": "72000000",
  "cpvText": "IT-Dienste: Beratung, Software-Entwicklung, Internet und Hilfestellung",
  "contractValue": "69.360,00 €",
  "procedureType": "Verhandlungsverfahren mit vorheriger Bekanntmachung",
  "numberOfOffers": "3",
  "detailUrl": "https://ausschreibungen.usp.gv.at/..."
}
```

### Source

Official Austrian USP procurement search:

```text
https://ausschreibungen.usp.gv.at/at.gv.bmdw.eproc-p/public/tenderlist
```

### Related Actors

- [Austrian Public Procurement Scraper](https://apify.com/publicdataworks/austrian-public-tenders-scraper) — broader tender + award search
- [Austria IT & Software Tenders Scraper](https://apify.com/publicdataworks/austria-it-public-tenders-scraper) — IT/software-focused tenders and awards

### Notes

- This Actor is optimized for `award` notices.
- Set `includeDetails=true` to extract values, CPV, procedure, offer counts, and descriptions.
- Contract values and supplier/winner details depend on what USP publishes in each notice.

### Keywords

Austria contract awards, Austrian contract awards scraper, tender awards Austria, Austria tender awards, Austrian public procurement awards, USP Ausschreibungssuche, Österreich Zuschläge, Austrian public contracts, CPV contract award data, public-sector sales intelligence.

# Actor input Schema

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

Optional full-text search term, e.g. software, photovoltaik, sanierung. Leave empty for latest award notices.

## `maxItems` (type: `integer`):

Maximum number of contract award notices to save to the dataset.

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

Open each public detail page to extract CPV, procedure, value, description, offer counts and other available award fields.

## `fromDate` (type: `string`):

Optional publication date lower bound. Format: YYYY-MM-DD.

## `toDate` (type: `string`):

Optional publication date upper bound. Format: YYYY-MM-DD.

## `noticeKinds` (type: `array`):

Default is award. Use only award for this Actor unless you intentionally want to inspect tender notices too.

## `cpvCodes` (type: `array`):

Optional top-level or detailed CPV codes accepted by USP, e.g. 45000000, 72000000.

## `regionCodes` (type: `array`):

Optional USP region/NUTS filter codes, e.g. AT13 for Vienna if supported by the source.

## `language` (type: `string`):

Language of normalized field labels only; source text remains as published.

## Actor input object example

```json
{
  "query": "",
  "maxItems": 100,
  "includeDetails": true,
  "noticeKinds": [
    "award"
  ],
  "cpvCodes": [],
  "regionCodes": [],
  "language": "en"
}
```

# Actor output Schema

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

All scraped Austrian public contract award records in the default dataset. Includes buyers, CPV categories, contract values, procedures, offer counts, descriptions and source URLs where available.

## `overview` (type: `string`):

Default dataset view with the most important contract award fields.

## `runSummary` (type: `string`):

Run metadata saved by the Actor, including query, requested limit, saved item count and source URL.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("publicdataworks/austria-contract-awards-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("publicdataworks/austria-contract-awards-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 '{}' |
apify call publicdataworks/austria-contract-awards-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/MmlyU7qkBzqhZsr6f/builds/6h6fmcqVWCNNHpsBg/openapi.json
