# Government Tender Finder: EU, UK & World Bank Contracts (`scrapemint/government-tender-finder`) Actor

Find live government tenders worldwide by keyword: EU TED (27+ countries), UK Contracts Finder, and World Bank projects in 140+ countries. One row per tender with buyer, deadline, value, and contact email when published. Official APIs, no key, no browser. Pay per tender.

- **URL**: https://apify.com/scrapemint/government-tender-finder.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** Business, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00 / 1,000 government tender rows

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

## Government Tender Finder: EU, UK & World Bank Contracts

Search live government tenders across three official procurement systems in one run and get one clean JSON row per tender: title, buyer organization, country, published date, submission deadline, estimated value, CPV categories, notice link, and the buyer contact email when published. Reads official public APIs (EU TED, UK Contracts Finder, World Bank): no key, no login, no browser.

Coverage is global: TED carries every above-threshold public tender from 27+ EU/EEA countries, Contracts Finder carries UK government contracts, and World Bank notices span development projects in 140+ countries across Africa, Asia, Latin America, and Eastern Europe. Built for any company that sells to governments: IT and software firms, construction and engineering, medical suppliers, consultants, logistics, training providers. Turn on cross-run dedupe, put it on a daily schedule, and each run returns only newly published tenders matching what you sell — the alert that tender portals charge $100 to $300 per month for.

### What you get

One row per tender, with:

- `source` (`eu-ted`, `uk-contracts-finder`, `world-bank`), `noticeId`
- `title`, `description` (plain text), `noticeType`
- `buyer`, `buyerCountry`, `country`
- `publishedDate`, `deadline` (submission deadline)
- `estimatedValue`, `currency`, `cpvCodes` (EU procurement categories)
- `projectId`, `projectName` (World Bank rows)
- `contactName`, `contactEmail`, `contactPhone` (when published)
- `url` (official notice page), `matchedKeyword`, `scrapedAt`

### Input

- `keywords` — what you sell; one search per keyword, merged and deduplicated
- `sources` — any of `ted`, `uk`, `worldbank` (default: all three)
- `countries` — ISO 3-letter codes for EU (DEU, FRA, ESP) or country names for World Bank (Kenya, Brazil, India); empty = everywhere
- `publishedWithinDays` — lookback window (default 14, up to 90)
- `activeOnly` — drop tenders whose deadline already passed (default on)
- `maxTenders` — cap on rows returned (default 25, up to 1000)
- `dedupe` — skip previously returned tenders; built for scheduled alerts

### Example input

```json
{
  "keywords": ["software development", "IT services"],
  "sources": ["ted", "worldbank"],
  "countries": ["DEU", "FRA", "Kenya"],
  "publishedWithinDays": 7,
  "maxTenders": 50,
  "dedupe": true
}
```

### Example output

```json
{
  "source": "world-bank",
  "noticeId": "OP00456175",
  "title": "Individual Consulting Services for IT Technician (Software Development)",
  "buyer": "Ministry of Economy",
  "country": "El Salvador",
  "publishedDate": "2026-07-10",
  "deadline": "2026-07-24",
  "noticeType": "Request for Expression of Interest / Individual Consultant Selection",
  "projectName": "Promoting Job Opportunities and Skills Development in El Salvador",
  "contactEmail": "procurement@economia.gob.sv",
  "url": "https://projects.worldbank.org/en/projects-operations/procurement-detail/OP00456175"
}
```

### Uses

- Daily new-tender alerts scoped to your keywords and countries, with dedupe so you only see what's new
- Bid pipelines: pull every open tender in your category closing in the next 30 days
- Bid consultancies: one scheduled run per client profile, rows straight into the client tracker
- Market entry research: see which governments buy what you sell, at what estimated values, before you invest in a region
- Outreach: buyer contact emails for clarification questions and expressions of interest

### Pricing

Pay per tender row. Searches that match nothing cost nothing. The first 2 rows of every run are free so you can validate output before you scale up.

### Notes

- Sources are the official public APIs: TED (Tenders Electronic Daily, the EU's procurement journal), Contracts Finder (UK Cabinet Office), and the World Bank procurement notice database.
- EU rows are above-threshold tenders (roughly EUR 143k+ for services), which is where the serious contracts live. UK rows include lower-value contracts too.
- World Bank notices often include the buyer's direct email, which most paid tender portals strip out.

# Actor input Schema

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

What you sell, one search per keyword (results merged and deduplicated). Example: software development, medical equipment, road construction, consulting.

## `sources` (type: `array`):

Which procurement systems to search.

## `countries` (type: `array`):

Restrict results by country. Use ISO 3-letter codes for EU tenders (DEU, FRA, ESP, ITA, POL) or country names for World Bank tenders (Kenya, Brazil, India). Empty = everywhere.

## `publishedWithinDays` (type: `integer`):

Only return tenders published in the last N days.

## `activeOnly` (type: `boolean`):

Drop tenders whose submission deadline has already passed.

## `maxTenders` (type: `integer`):

Cap on tender rows returned. Controls total cost.

## `dedupe` (type: `boolean`):

Remember returned tender IDs across runs and skip them. Turn on for scheduled new-tender alerts.

## Actor input object example

```json
{
  "keywords": [
    "software"
  ],
  "sources": [
    "ted",
    "uk",
    "worldbank"
  ],
  "countries": [],
  "publishedWithinDays": 14,
  "activeOnly": true,
  "maxTenders": 25,
  "dedupe": false
}
```

# 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 = {
    "keywords": [
        "software"
    ],
    "sources": [
        "ted",
        "uk",
        "worldbank"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/government-tender-finder").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 = {
    "keywords": ["software"],
    "sources": [
        "ted",
        "uk",
        "worldbank",
    ],
}

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/government-tender-finder").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 '{
  "keywords": [
    "software"
  ],
  "sources": [
    "ted",
    "uk",
    "worldbank"
  ]
}' |
apify call scrapemint/government-tender-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapemint/government-tender-finder",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/qX6gY9I0DtF0jxgwd/builds/vGtwY5L3iTh686BUv/openapi.json
