# ExpoFP Exhibitor List Scraper (`monteva/expofp-exhibitor-list-scraper`) Actor

Extract complete exhibitor lists (name, booth, description, categories, logo) from any trade show hosted on ExpoFP - 1,000+ events worldwide. Clean structured data for B2B lead generation, CRM import and market research. Pay per exhibitor, free test option.

- **URL**: https://apify.com/monteva/expofp-exhibitor-list-scraper.md
- **Developed by:** [monteva](https://apify.com/monteva) (community)
- **Categories:** Lead generation, Automation, Agents
- **Stats:** 2 total users, 1 monthly users, 75.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$15.00 / 1,000 exhibitor 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 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

## ExpoFP Exhibitor List Scraper

Extract the **complete exhibitor directory** from any trade show hosted on **ExpoFP** — the interactive floor plan platform used by **1,000+ events in 50+ countries**, including Money20/20, TechCrunch Disrupt, AGRITECHNICA, Wine Paris, MRO Europe and Big 5 Global.

One run returns a clean, structured list of every exhibitor: **company name, booth number(s), description, product categories, logo and event details** — ready for lead generation, market research or CRM import.

### Why exhibitor lists?

Exhibitor directories are high-intent B2B lead sources: every company on the list paid to be there, actively sells in that industry, and has budget. Sales teams use these lists to book meetings before the show, agencies use them to prospect entire industries, analysts use them to map competitive landscapes.

### How to use it

1. Find the ExpoFP floor plan of your target event. It is usually linked from the event website ("Floor plan" / "Exhibitor list") and lives at `https://<event>.expofp.com/`.
2. Paste one or more of these URLs into the **Event URLs** input (just the subdomain works too, e.g. `wineparis2026`).
3. Run the Actor. Results land in the dataset and export as **Excel, CSV, JSON** or via API.

### Input example

```json
{
    "eventUrls": ["https://wineparis2026.expofp.com/"],
    "includeBooths": true
}
```

### Output example

```json
{
    "eventSlug": "wineparis2026",
    "eventTitle": "Wine Paris 2026",
    "name": "0.0% SOBER SPIRITS",
    "description": "World's First Non-Alcoholic Spirits made from REAL Spirits...",
    "categories": ["No/Low Alcohol"],
    "booths": ["7.2-C123"],
    "logoUrl": "https://wineparis2026.expofp.com/data/logos/sober-spirits.png",
    "sourceUrl": "https://wineparis2026.expofp.com/exhibitors/0.0%25%20SOBER%20SPIRITS"
}
```

Benchmark: 9,654 exhibitors across 3 events extracted in 3 seconds.

### Pricing

$0.005 per exhibitor extracted — no subscription, no minimum. A 300-exhibitor show costs $1.50; a 3,000-exhibitor flagship fair about $15. Use **Max exhibitors per event** to run a small test first.

### FAQ

**Does this work for any trade show?** It works for every event whose floor plan is hosted on ExpoFP (URL contains `.expofp.com`). If your event uses a different system, email hello@monteva.io — it may already be on our roadmap.

**Do I need proxies or an account?** No. ExpoFP directories are public and the Actor reads them the same way your browser does.

**How fresh is the data?** Live — every run fetches the current published directory. Re-run close to the show date to catch late additions.

**Is this legal?** The Actor collects only publicly available business information (company names, booths, descriptions) that events publish so exhibitors can be found. No logins, no private personal data.

### Support

Found an event that does not work, or need extra fields? Open an issue on the Actor page or email hello@monteva.io.

***

Maintained by [monteva](https://monteva.io) — reliable data & automation tools for businesses and AI agents. Issues answered within 24h. More tools: [apify.com/monteva](https://apify.com/monteva)

# Actor input Schema

## `eventUrls` (type: `array`):

One or more ExpoFP event floor plan URLs, e.g. https://wineparis2026.expofp.com/ . You can also paste just the subdomain (e.g. wineparis2026). Find events at expofp.com or via the event's own website (look for the interactive floor plan).

## `includeBooths` (type: `boolean`):

Match exhibitors to their booth numbers using the event floor plan. Slightly slower (loads the floor plan file).

## `maxExhibitorsPerEvent` (type: `integer`):

Limit the number of exhibitors extracted per event (0 = no limit). Useful for a free test before a full paid run.

## Actor input object example

```json
{
  "eventUrls": [
    "https://wineparis2026.expofp.com/"
  ],
  "includeBooths": true,
  "maxExhibitorsPerEvent": 0
}
```

# 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 = {
    "eventUrls": [
        "https://wineparis2026.expofp.com/"
    ],
    "maxExhibitorsPerEvent": 0
};

// Run the Actor and wait for it to finish
const run = await client.actor("monteva/expofp-exhibitor-list-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 = {
    "eventUrls": ["https://wineparis2026.expofp.com/"],
    "maxExhibitorsPerEvent": 0,
}

# Run the Actor and wait for it to finish
run = client.actor("monteva/expofp-exhibitor-list-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 '{
  "eventUrls": [
    "https://wineparis2026.expofp.com/"
  ],
  "maxExhibitorsPerEvent": 0
}' |
apify call monteva/expofp-exhibitor-list-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/6pTWhqL1Jg5xd79pS/builds/pjXGwJ8VSWbDaA8Ey/openapi.json
