# Europages Company Scraper (`xtracto/europages-company-scraper`) Actor

Search Europages by product or industry keyword and extract B2B company profiles — name, location, description, activities, phone, and website — as clean structured rows.

- **URL**: https://apify.com/xtracto/europages-company-scraper.md
- **Developed by:** [Farhan Febrian Nauval](https://apify.com/xtracto) (community)
- **Categories:** Lead generation, E-commerce, Real estate
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## Europages Company Scraper

Search Europages by any product or industry keyword and get clean, structured B2B supplier and manufacturer profiles — company name, location, description, activities, phone, and website.

### Why use this actor

- **Find suppliers by keyword** — type a product or industry term and get the companies that offer it, straight from Europages.
- **Full company profiles** — name, country and city, description, the activities they're listed under, plus phone and website when public.
- **Five Europages sites** — search the International (English) directory or the French, German, Italian, or Spanish sites.
- **No account, no API key** — works straight from the public company directory.
- **Stable JSON output** — the same field names every run, ready for spreadsheets, CRMs, databases, or lead pipelines.

### How it works

1. You provide one or more search keywords and pick the Europages site to search.
2. For each keyword, the actor loads the company directory results page fully, just like a real visitor, and reads every company card on it.
3. Each company is saved as a `COMPANY` record with its location, description, activities, and contact details when shown.
4. Everything lands in your dataset, exportable as JSON, CSV, or Excel.

You don't need to manage any browsers or scrapers.

> **Residential proxy required.** Europages only serves its pages to genuine residential visitors. You **must** run this actor with the Apify **RESIDENTIAL** proxy group (it is prefilled in the input). Because the actor loads each page fully like a real visitor, it is more compute-intensive than a simple data scraper — this is reflected in its pricing.

### Input

```json
{
    "queries": [
        "earbuds",
        "industrial valves"
    ],
    "country": "www.europages.co.uk",
    "maxItems": 50,
    "maxRequestRetries": 3,
    "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
````

Each keyword in `queries` is processed independently and produces its own set of `COMPANY` records.

| Field | Type | Description |
| --- | --- | --- |
| `queries` | array | **Required.** Product or industry keywords to find suppliers for (one per entry). |
| `country` | string | Europages site to search. One of: `www.europages.co.uk` (International, English), `www.europages.fr` (France), `www.europages.de` (Germany), `www.europages.it` (Italy), `www.europages.es` (Spain). The site sets the interface language. Default `www.europages.co.uk`. |
| `maxItems` | integer | Maximum company profiles to collect per keyword (`1`–`500`). Default `50`. |
| `maxRequestRetries` | integer | How many times a keyword search is retried before giving up (`1`–`10`). Default `3`. |
| `proxyConfiguration` | object | **Required.** Apify Proxy configuration. The **RESIDENTIAL** group is required — datacenter IPs are turned away. Prefilled for you. |

### Output

Per company (`recordType: "COMPANY"`):

```json
{
    "recordType": "COMPANY",
    "query": "earbuds",
    "domain": "www.europages.co.uk",
    "name": "Example Audio Manufacturing Ltd",
    "url": "https://www.europages.co.uk/EXAMPLE-AUDIO/00000001234-001.html",
    "country": "United Kingdom",
    "city": "Manchester",
    "description": "Manufacturer of wireless earbuds and audio accessories for OEM and retail.",
    "activities": ["Earphones", "Audio accessories", "Consumer electronics"],
    "phone": "+44 161 000 0000",
    "website": "https://example-audio.com",
    "logo": "https://www.europages.co.uk/.../logo.png",
    "source": "directory",
    "scrapedAt": "2026-06-10T12:00:00Z"
}
```

| Field | Type | Description |
| --- | --- | --- |
| `recordType` | string | Always `"COMPANY"`. |
| `query` | string | The keyword that produced this record. |
| `domain` | string | The Europages site that was searched. |
| `name` | string | Company name. |
| `url` | string | Link to the company's Europages profile. |
| `country` | string | Company country. |
| `city` | string | Company city/locality when shown. |
| `description` | string | Short company description. |
| `activities` | array | Activities/categories the company is listed under. |
| `phone` | string | Public phone number when shown. |
| `website` | string | Company website when shown. |
| `logo` | string | Company logo URL when shown. |
| `source` | string | Where the row came from on the page. |
| `scrapedAt` | string | ISO 8601 timestamp of collection. |

If a keyword's page cannot be loaded, the actor emits a diagnostic row for that keyword (`error: "WAF_BLOCKED"`) instead of silently skipping it — re-run that keyword with the RESIDENTIAL proxy group enabled.

### Other B2B Scrapers

| Actor | Description |
| --- | --- |
| [Alibaba Company Scraper](https://apify.com/alibaba-company-scraper) | Supplier company profiles from Alibaba with capabilities and certifications. |
| [Alibaba RFQ Scraper](https://apify.com/alibaba-rfq-scraper) | Live buyer requests-for-quotation from Alibaba sourcing. |
| [Europages Company Scraper](https://apify.com/europages-company-scraper) | B2B supplier and manufacturer profiles from Europages by keyword. |

# Actor input Schema

## `queries` (type: `array`):

Product or industry keywords to find B2B suppliers/manufacturers for (one per array entry). Each keyword runs its own company search.

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

Which Europages country site to search. The site decides the interface language and the localized company-search path. Default International (English).

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

Maximum number of company profiles to collect per keyword.

## `maxRequestRetries` (type: `integer`):

How many times a keyword search is retried (full page reload) before giving up.

## `proxyConfiguration` (type: `object`):

REQUIRED. Europages protects its pages with a security check that only clears from a clean residential IP. You MUST use the Apify RESIDENTIAL proxy group (prefilled). Datacenter IPs are escalated to a human-verification step that cannot be passed automatically.

## Actor input object example

```json
{
  "queries": [
    "earbuds"
  ],
  "country": "www.europages.co.uk",
  "maxItems": 50,
  "maxRequestRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "queries": [
        "earbuds"
    ],
    "country": "www.europages.co.uk",
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("xtracto/europages-company-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 = {
    "queries": ["earbuds"],
    "country": "www.europages.co.uk",
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("xtracto/europages-company-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 '{
  "queries": [
    "earbuds"
  ],
  "country": "www.europages.co.uk",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call xtracto/europages-company-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Europages Company Scraper",
        "description": "Search Europages by product or industry keyword and extract B2B company profiles — name, location, description, activities, phone, and website — as clean structured rows.",
        "version": "1.0",
        "x-build-id": "FpLBQObKOd2gj73Bk"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/xtracto~europages-company-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-xtracto-europages-company-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/xtracto~europages-company-scraper/runs": {
            "post": {
                "operationId": "runs-sync-xtracto-europages-company-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/xtracto~europages-company-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-xtracto-europages-company-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",
                "required": [
                    "queries"
                ],
                "properties": {
                    "queries": {
                        "title": "Search keywords",
                        "type": "array",
                        "description": "Product or industry keywords to find B2B suppliers/manufacturers for (one per array entry). Each keyword runs its own company search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "country": {
                        "title": "Europages site",
                        "enum": [
                            "www.europages.co.uk",
                            "www.europages.fr",
                            "www.europages.de",
                            "www.europages.it",
                            "www.europages.es"
                        ],
                        "type": "string",
                        "description": "Which Europages country site to search. The site decides the interface language and the localized company-search path. Default International (English).",
                        "default": "www.europages.co.uk"
                    },
                    "maxItems": {
                        "title": "Max companies per query",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of company profiles to collect per keyword.",
                        "default": 50
                    },
                    "maxRequestRetries": {
                        "title": "Max retries",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "How many times a keyword search is retried (full page reload) before giving up.",
                        "default": 3
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "REQUIRED. Europages protects its pages with a security check that only clears from a clean residential IP. You MUST use the Apify RESIDENTIAL proxy group (prefilled). Datacenter IPs are escalated to a human-verification step that cannot be passed automatically."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
