# EU Contract Award Radar (TED) (`fetchwerk/eu-award-radar`) Actor

Track who wins EU public contracts. Scrape TED contract-award notices with winner, contract value and number of bidders. Filter by CPV, country, winner and minimum value. Normalized output + digest mode.

- **URL**: https://apify.com/fetchwerk/eu-award-radar.md
- **Developed by:** [Fetchwerk](https://apify.com/fetchwerk) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 award records

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 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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## EU Contract Award Radar (TED)

This **EU contract award radar** tracks who wins European public contracts. It reads **contract-award notices** from **TED** (Tenders Electronic Daily, the official EU procurement journal) and returns, for every awarded contract, the **winner**, the **contract value**, the **number of bidders** and the buyer. Filter by CPV, country, winner name and minimum value. No API keys, no login, no personal-data scraping beyond the winners that the EU itself publishes.

### Tenders vs awards: this is the other side

Most tender scrapers show you **open calls** (opportunities to bid). This actor shows you the **results**: which company won, for how much, and against how many competitors. That makes it a sales-intelligence and market-research tool rather than a bid-finding tool.

- **Competitor tracking**: follow a specific company and see every public contract it wins across the EU.
- **Market sizing**: aggregate award values by CPV, country or buyer to see who spends what.
- **Lead signals**: a winner is a company that just secured budget and often needs subcontractors; a losing bidder is a buyer with proven demand.

Pairs cleanly with our EU Tenders Scraper (open calls) on the same TED source.

### What data does it return?

```json
{
  "id": "ted-award:449210-2026",
  "source": "ted-award",
  "title": "Poland - Laboratory, optical and precision equipment - Purchase and delivery of spectrometers",
  "buyer": "Uniwersytet Warszawski",
  "country": "POL",
  "cpv_codes": ["38000000", "38433000", "42300000"],
  "notice_type": "can-standard",
  "publication_date": "2026-07-01",
  "url": "https://ted.europa.eu/en/notice/-/detail/449210-2026",
  "winners": ["SHIM-POL A.M. Borzymowski", "SPECTRO-LAB Sp. z o.o", "VERDER POLSKA"],
  "winner_countries": ["POL"],
  "award_value": 310562.33,
  "currency": "PLN",
  "num_bids": 16
}
````

### How to use it

Example input, all fields optional:

```json
{
  "cpvCodes": ["72000000"],
  "buyerCountries": ["NLD", "DEU"],
  "winners": ["Accenture", "Capgemini"],
  "minValue": 100000,
  "daysBack": 30,
  "maxItems": 200,
  "mode": "digest"
}
```

- **cpvCodes**: CPV codes, filtered server-side on TED (e.g. 72000000 for IT services).
- **buyerCountries**: ISO-3 codes. Empty for all of the EU.
- **winners**: keep only awards won by a company whose name contains one of these. Ideal for competitor tracking.
- **minValue**: only awards at or above this contract value. Awards without a published value are dropped when this is set.
- **daysBack**: publication window, 1 to 90 days.
- **mode**: `search` returns the dataset; `digest` also writes a ready-to-send markdown summary (grouped by country, with winner and value) to the key-value store under the key `DIGEST`.

### Award monitoring and alerts

Run the actor on a weekly [schedule](https://docs.apify.com/platform/schedules) in `digest` mode and connect an Apify integration (Slack, email, webhook, Make, Zapier) to deliver the `DIGEST` wherever your team works. Set `winners` to your competitors to get a weekly "who won what" briefing.

### FAQ

**Is this allowed?**
Yes. TED is the official EU procurement journal and publishes contract-award notices, including winners and values, as open government data. This actor uses the public, documented TED Search API v3.

**Are winner names personal data?**
Winners are organizations. In the rare case a winner is a sole proprietor, the name is published by the EU itself in the official award notice. No private-individual data is added.

**How does pricing work?**
Pay per event: a small fee per returned award record, and a flat fee per generated digest. `maxItems` caps your cost per run.

**Can I combine it with open tenders?**
Yes. It shares TED as a source with our EU Tenders Scraper, so opportunities and awards line up on the same buyers and CPV codes.

### Related Fetchwerk actors

All Fetchwerk procurement actors share a normalized output schema, so you can merge them into one pipeline:

- **[EU Tenders Scraper](https://apify.com/fetchwerk/eu-tenders-scraper)**: the opportunities side. EU-wide open calls from TED plus Dutch tenders from TenderNed.
- **[German Tenders Scraper](https://apify.com/fetchwerk/de-tenders-scraper)**: German national and below-threshold tenders from the official oeffentlichevergabe.de service.
- **[UK Tenders Scraper](https://apify.com/fetchwerk/uk-tenders-scraper)**: UK public contracts from Find a Tender and Contracts Finder, which left TED after Brexit.

***

Built and operated by **Fetchwerk**.

# Actor input Schema

## `keywords` (type: `array`):

Case-insensitive match on title, buyer and winner names. Empty = no keyword filter.

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

CPV classification codes, e.g. 72000000 (IT services). Filtered server-side on TED.

## `buyerCountries` (type: `array`):

ISO-3 codes, e.g. NLD, DEU, BEL. Empty = all of the EU.

## `winners` (type: `array`):

Only keep awards won by a company whose name contains one of these (competitor tracking). Empty = all winners.

## `minValue` (type: `integer`):

Only awards with a total value at or above this amount. Awards without a published value are dropped when set.

## `daysBack` (type: `integer`):

Only award notices published in the last N days.

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

Hard cap on returned awards (also caps your cost).

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

search = dataset only; digest = dataset + markdown digest in key-value store (key DIGEST).

## Actor input object example

```json
{
  "keywords": [],
  "cpvCodes": [],
  "buyerCountries": [],
  "winners": [],
  "minValue": 0,
  "daysBack": 30,
  "maxItems": 200,
  "mode": "search"
}
```

# 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("fetchwerk/eu-award-radar").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("fetchwerk/eu-award-radar").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 fetchwerk/eu-award-radar --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=fetchwerk/eu-award-radar",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "EU Contract Award Radar (TED)",
        "description": "Track who wins EU public contracts. Scrape TED contract-award notices with winner, contract value and number of bidders. Filter by CPV, country, winner and minimum value. Normalized output + digest mode.",
        "version": "0.1",
        "x-build-id": "ztLqDdWS9FagRw5m5"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/fetchwerk~eu-award-radar/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-fetchwerk-eu-award-radar",
                "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/fetchwerk~eu-award-radar/runs": {
            "post": {
                "operationId": "runs-sync-fetchwerk-eu-award-radar",
                "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/fetchwerk~eu-award-radar/run-sync": {
            "post": {
                "operationId": "run-sync-fetchwerk-eu-award-radar",
                "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": {
                    "keywords": {
                        "title": "Keywords",
                        "type": "array",
                        "description": "Case-insensitive match on title, buyer and winner names. Empty = no keyword filter.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "cpvCodes": {
                        "title": "CPV codes",
                        "type": "array",
                        "description": "CPV classification codes, e.g. 72000000 (IT services). Filtered server-side on TED.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "buyerCountries": {
                        "title": "Buyer countries",
                        "type": "array",
                        "description": "ISO-3 codes, e.g. NLD, DEU, BEL. Empty = all of the EU.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "winners": {
                        "title": "Winner names",
                        "type": "array",
                        "description": "Only keep awards won by a company whose name contains one of these (competitor tracking). Empty = all winners.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minValue": {
                        "title": "Minimum contract value",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only awards with a total value at or above this amount. Awards without a published value are dropped when set.",
                        "default": 0
                    },
                    "daysBack": {
                        "title": "Days back",
                        "minimum": 1,
                        "maximum": 90,
                        "type": "integer",
                        "description": "Only award notices published in the last N days.",
                        "default": 30
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Hard cap on returned awards (also caps your cost).",
                        "default": 200
                    },
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "digest"
                        ],
                        "type": "string",
                        "description": "search = dataset only; digest = dataset + markdown digest in key-value store (key DIGEST).",
                        "default": "search"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
