# Europages Listings Scraper (`piotrv1001/europages-listings-scraper`) Actor

The Europages Listings Scraper extracts company listings and enriched profiles from europages.com, capturing names, addresses, phones, websites, certifications, supplier types, employee counts, and optional product catalogs — ideal for B2B lead generation and supplier research.

- **URL**: https://apify.com/piotrv1001/europages-listings-scraper.md
- **Developed by:** [FalconScrape](https://apify.com/piotrv1001) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 company listings

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.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 Listings Scraper

Extract company data from **[Europages](https://www.europages.co.uk/)** — Europe's largest B2B business directory — at scale. The **Europages Listings Scraper** turns any Europages category into a structured dataset of suppliers, manufacturers, and distributors, with phone numbers, addresses, websites, certifications, and more.

### ✨ Features

- 🏢 **Rich Company Data**: Name, full address (street, postal code, locality, country), phone, website, founding year, certifications, contact person, supplier type, employees, and VAT-number availability.
- 🌍 **Locale & Country Slicing**: Choose between 8 Europages locales (`co.uk`, `de`, `fr`, `es`, `it`, `nl`, `pl`, `com`) and optionally narrow to a country or city.
- 🛍️ **Optional Product Catalogs**: Toggle `includeProducts` to also extract each company's product cards (name, price, description, image).
- ⚡ **Fast & Lightweight**: Pure HTTP + Cheerio — no browser, no proxy needed for moderate runs.
- 💰 **Pay-Per-Event Pricing**: Pay only for what you extract. Cheap discovery fee + a higher fee for the full company profile.

### 🛠️ How It Works

1. **Pick a category** — copy the slug from a Europages URL (e.g. `food-beverages` from `https://www.europages.co.uk/companies/food-beverages.html`).
2. **(Optional) narrow the slice** — add a `countrySlug` like `germany` or a `citySlug` like `berlin`.
3. **Run the Actor** — it paginates the listing, follows each company to its canonical detail page, and pushes a structured record per company.

### 📥 Input

| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| `categorySlug` | string | ✅ | — | Europages category slug, e.g. `food-beverages`, `industrial-supplies`, `electronics-electrical-equipment`. |
| `countrySlug` | string | ❌ | — | Optional country slice, e.g. `germany`, `france`, `italy`. Leave empty for all countries. |
| `citySlug` | string | ❌ | — | Optional city slice (without the `city-` prefix), e.g. `berlin`. Takes precedence over `countrySlug`. |
| `languageHost` | enum | ❌ | `co.uk` | Locale host. One of `co.uk`, `com`, `de`, `fr`, `es`, `it`, `nl`, `pl`. |
| `maxResults` | integer | ❌ | `50` | Maximum company records to push (1–3000). Each listing page returns up to 30 companies. |
| `includeProducts` | boolean | ❌ | `false` | If `true`, also extract product cards (name, price, description, image) from each company page. |
| `proxyConfiguration` | object | ❌ | none | Optional Apify Proxy configuration. Europages does not require proxies for moderate concurrency. |

#### Example input

```json
{
    "categorySlug": "food-beverages",
    "countrySlug": "germany",
    "languageHost": "co.uk",
    "maxResults": 200,
    "includeProducts": false
}
````

### 📊 Sample Output Data

The scraper produces structured JSON output with one record per company:

```json
[
    {
        "url": "https://www.europages.co.uk/en/company/mapsis-metal-havacilik-as-22277808",
        "companyId": "22277808",
        "name": "MAPSIS METAL HAVACILIK A.S",
        "descriptionShort": "Mapsis Metal is a trusted OEM manufacturer of precision-engineered metal and composite components for the aerospace, aviation, defense, and industrial sectors...",
        "country": "Türkiye",
        "address": "Köseler Mahallesi 1.cadde 42. Sokak No 4/4 Dilovasi, Kocaeli 41455",
        "postalCode": "41455",
        "locality": "Kocaeli",
        "streetAddress": "Köseler Mahallesi 1.cadde 42. Sokak No 4/4 Dilovasi",
        "countryCode": "TR",
        "website": "https://www.mapsismetal.com",
        "phone": "+905303034925",
        "logoUrl": "https://media.visable.com/...",
        "foundingYear": 2011,
        "certificates": "EN 9100:2018",
        "contactPerson": "Hazal İrem Bayram - CEO",
        "distributionArea": "Delivery area: Worldwide",
        "supplierType": "Manufacturer/Producer",
        "verified": true,
        "vatNumberAvailable": true,
        "productCount": 11,
        "employees": "20-49",
        "products": [],
        "scrapedAt": "2026-05-21T16:49:04.547Z"
    }
]
```

### 💰 Pricing

This Actor uses Apify's **Pay-Per-Event** model — you pay only for what is actually extracted. Two events are charged:

| Event | Price (per 1,000) | When it fires |
|---|---|---|
| `product-listing` | **$1.00** | Once per company card discovered on a listing page (cheap discovery fee). |
| `item-detail` | **$4.00** | Once per full company record pushed to the dataset (rich JSON-LD + page data). |

**Effective cost: ~$5 per 1,000 companies** with full detail data. Cheaper than most competing Europages scrapers on Apify Store, while delivering richer structured fields (parsed JSON-LD address, certifications, optional product catalogs).

Optimize your B2B prospecting and supplier research with the **Europages Listings Scraper** today! 🚀

# Actor input Schema

## `categorySlug` (type: `string`):

Europages category slug as it appears in the URL. Example: 'food-beverages' for https://www.europages.co.uk/companies/food-beverages.html

## `countrySlug` (type: `string`):

Optional country slice. Example: 'germany' for https://www.europages.co.uk/companies/germany/food-beverages.html. Leave empty to scrape all countries.

## `citySlug` (type: `string`):

Optional city slice (without the 'city-' prefix). Example: 'berlin' becomes /companies/city-berlin/food-beverages.html. If set, takes precedence over countrySlug.

## `languageHost` (type: `string`):

Which Europages locale host to scrape. Different hosts serve different language content.

## `maxResults` (type: `integer`):

Maximum number of company detail records to push to the dataset. Each listing page returns up to 30 companies; Europages caps pagination at 100 pages, so the practical ceiling per category slice is ~3000 records.

## `includeProducts` (type: `boolean`):

Whether to extract product cards from each company detail page. Disabled by default to keep runs lean — enable for full product catalogs.

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

Europages does not require proxies for moderate concurrency, but Apify Proxy can be enabled if you run into rate limits.

## Actor input object example

```json
{
  "categorySlug": "food-beverages",
  "languageHost": "co.uk",
  "maxResults": 50,
  "includeProducts": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

No description

# 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 = {
    "categorySlug": "food-beverages",
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("piotrv1001/europages-listings-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 = {
    "categorySlug": "food-beverages",
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("piotrv1001/europages-listings-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 '{
  "categorySlug": "food-beverages",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call piotrv1001/europages-listings-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Europages Listings Scraper",
        "description": "The Europages Listings Scraper extracts company listings and enriched profiles from europages.com, capturing names, addresses, phones, websites, certifications, supplier types, employee counts, and optional product catalogs — ideal for B2B lead generation and supplier research.",
        "version": "0.0",
        "x-build-id": "Ec5u44ueiVbcwtyOS"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/piotrv1001~europages-listings-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-piotrv1001-europages-listings-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/piotrv1001~europages-listings-scraper/runs": {
            "post": {
                "operationId": "runs-sync-piotrv1001-europages-listings-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/piotrv1001~europages-listings-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-piotrv1001-europages-listings-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": [
                    "categorySlug"
                ],
                "properties": {
                    "categorySlug": {
                        "title": "Category slug",
                        "type": "string",
                        "description": "Europages category slug as it appears in the URL. Example: 'food-beverages' for https://www.europages.co.uk/companies/food-beverages.html"
                    },
                    "countrySlug": {
                        "title": "Country slug (optional)",
                        "type": "string",
                        "description": "Optional country slice. Example: 'germany' for https://www.europages.co.uk/companies/germany/food-beverages.html. Leave empty to scrape all countries."
                    },
                    "citySlug": {
                        "title": "City slug (optional)",
                        "type": "string",
                        "description": "Optional city slice (without the 'city-' prefix). Example: 'berlin' becomes /companies/city-berlin/food-beverages.html. If set, takes precedence over countrySlug."
                    },
                    "languageHost": {
                        "title": "Language host",
                        "enum": [
                            "co.uk",
                            "com",
                            "de",
                            "fr",
                            "es",
                            "it",
                            "nl",
                            "pl"
                        ],
                        "type": "string",
                        "description": "Which Europages locale host to scrape. Different hosts serve different language content.",
                        "default": "co.uk"
                    },
                    "maxResults": {
                        "title": "Max company records",
                        "minimum": 1,
                        "maximum": 3000,
                        "type": "integer",
                        "description": "Maximum number of company detail records to push to the dataset. Each listing page returns up to 30 companies; Europages caps pagination at 100 pages, so the practical ceiling per category slice is ~3000 records.",
                        "default": 50
                    },
                    "includeProducts": {
                        "title": "Include products",
                        "type": "boolean",
                        "description": "Whether to extract product cards from each company detail page. Disabled by default to keep runs lean — enable for full product catalogs.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Europages does not require proxies for moderate concurrency, but Apify Proxy can be enabled if you run into rate limits.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
