# EU Procurement Buyer & Supplier Intelligence (`arclay-tn/eu-procurement-buyer-supplier-intelligence`) Actor

Build buyer lists, supplier profiles, and verified award relationships from official EU TED procurement notices. Get CRM-ready organization intelligence with CPV, country, dates, counts, identifiers, and source links.

- **URL**: https://apify.com/arclay-tn/eu-procurement-buyer-supplier-intelligence.md
- **Developed by:** [Arclay Suarl](https://apify.com/arclay-tn) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.90 / 1,000 intelligence 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/actors/running/actors-in-store.md#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

## EU Procurement Buyer & Supplier Intelligence

Find the organizations behind EU public procurement. This Actor aggregates
official Tenders Electronic Daily (TED) notices into buyer profiles, winning
supplier profiles, and verified buyer-supplier award relationships.

### What buyers get

- One organization row per observed buyer or published winning supplier.
- One relationship row per buyer-supplier pair observed in a published result.
- Official identifiers when TED publishes them; conservative fallback identity
  when no identifier exists.
- Notice counts, award counts, CPV coverage, first/last observed dates, country,
  city, and official TED source links.
- No personal contact fields. Organization names only.
- Values are never converted between currencies and are never allocated across
  multiple winners without an unambiguous source value.

### Business use cases

- Build account lists for public-sector sales teams.
- Identify repeat-buying authorities by sector and country.
- Find established suppliers and partnership targets.
- Map buyer-supplier relationships for market entry and competitor research.
- Refresh CRM and BI tables with bounded date windows.

### Quick start

Use a small seven-day window, choose a buyer country such as `FRA`, set CPV
prefix `72` for IT services, and keep `maxNotices` at `25` for a first run.
Choose `both` to receive profiles and relationship rows.

The Actor uses a maximum 30-day inclusive window, a maximum of 1,000 source
notices per run, and page-limited TED API requests to keep cost predictable.

### Output fields

Organization rows use `record_type=organization`, `organization_role=buyer` or
`supplier`, and include `organization_id`, `organization_name`,
`official_identifier`, `country_code`, `notice_count`, `award_count`,
`cpv_codes`, `official_notice_urls`, and `source_notice_ids`.

Relationship rows use `record_type=relationship` and include `buyer_id`,
`buyer_name`, `supplier_id`, `supplier_name`, country codes, `award_count`,
`cpv_codes`, award dates, and official notice URLs.
They also include `source_notice_ids` for traceability to the exact published notices.

### Data boundary

TED result notices can omit winner information. A relationship is emitted only
when TED marks a tenderer with winner status. A notice-level monetary amount is
not copied into every supplier row when several winners exist. Verify the linked
official notice before commercial, legal, procurement, or compliance decisions.

Data sourced from EU Tenders Electronic Daily (TED), https://ted.europa.eu.
This is an independent transformed dataset and is not an official EU product,
endorsement, or affiliation.

### Pricing

The launch price is **$1.90 per 1,000 intelligence rows**. Apify platform compute
and storage charges may apply separately. Start with a small bounded run before
scaling a recurring workflow.
and platform usage included where configured in Apify Store. Check the live
Pricing tab for current tier details. Start with 25 notices to preview output.

# Actor input Schema

## `dateFrom` (type: `string`):

Required. Inclusive TED publication date in YYYY-MM-DD format. Maximum window: 30 days.

## `dateTo` (type: `string`):

Required. Inclusive TED publication date in YYYY-MM-DD format. Must be on or after dateFrom.

## `country` (type: `string`):

Optional ISO 3166 alpha-3 buyer country code. Examples: FRA, DEU, POL. Leave empty for all countries.

## `cpv` (type: `string`):

Optional CPV exact 8-digit code or numeric prefix. Examples: 72 IT, 45 construction, 45000000 exact. Short prefixes become wildcards.

## `maxNotices` (type: `integer`):

Maximum TED notices scanned. Output rows can include multiple organizations and relationships per notice.

## `outputMode` (type: `string`):

Choose organization profiles, buyer-supplier relationships, or both.

## Actor input object example

```json
{
  "country": "FRA",
  "cpv": "72",
  "maxNotices": 250,
  "outputMode": "both"
}
```

# Actor output Schema

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

Organization profiles and verified buyer-supplier relationships.

## `summary` (type: `string`):

Source, filters, row counts, attribution, and caveats.

# 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 = {
    "country": "FRA",
    "cpv": "72"
};

// Run the Actor and wait for it to finish
const run = await client.actor("arclay-tn/eu-procurement-buyer-supplier-intelligence").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 = {
    "country": "FRA",
    "cpv": "72",
}

# Run the Actor and wait for it to finish
run = client.actor("arclay-tn/eu-procurement-buyer-supplier-intelligence").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "country": "FRA",
  "cpv": "72"
}' |
apify call arclay-tn/eu-procurement-buyer-supplier-intelligence --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,arclay-tn/eu-procurement-buyer-supplier-intelligence"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

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