VOOZH about

URL: https://apify.com/automation-lab/10times-events-scraper

โ‡ฑ 10times Trade Shows & Events Scraper ยท Apify


๐Ÿ‘ 10times Trade Shows & Events Scraper avatar

10times Trade Shows & Events Scraper

Pricing

Pay per event

Go to Apify Store

10times Trade Shows & Events Scraper

Scrapes B2B trade shows, conferences, and events from 10times.com including event details, dates, venues, and organizer information

Pricing

Pay per event

Rating

0.0

(0)

Developer

๐Ÿ‘ Stas Persiianenko

Stas Persiianenko

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Share

Scrape B2B trade shows, conferences, summits, and exhibitions from 10times.com โ€” the world's largest event discovery platform with 200,000+ events across 100+ industries. Extract event names, dates, venues, attendee estimates, exhibitor counts, and industry tags.

What does 10times Trade Shows & Events Scraper do?

This actor fetches listing pages from 10times.com by city/industry URL or keyword search and extracts structured event data. For each event, it collects:

  • Event info: name, URL, edition number, description
  • Dates: start and end dates (ISO format)
  • Location: city, country
  • Audience metrics: estimated attendees and exhibitors (when shown)
  • Industry tags: event type (Tradeshow, Conference, etc.) and topic tags
  • Images: event cover image URL

Who is it for

  • Sales & BDR teams โ€” find trade shows where target buyers exhibit; build outreach lists before registration closes
  • Event marketers โ€” discover sponsorship and speaking opportunities by industry and location
  • Market intelligence analysts โ€” track event frequency and venue trends across industries
  • Lead generation agencies โ€” export event organizer and exhibitor data for campaigns
  • Competitive intelligence โ€” monitor competitor presence at industry conferences
  • Researchers & journalists โ€” map the global conference landscape

Why use 10times Trade Shows & Events Scraper?

  • Massive coverage โ€” 10times.com lists 200,000+ events globally across pharma, tech, fintech, manufacturing, healthcare, and more
  • B2B focus โ€” trade shows and industry conferences; ideal for sales and market research
  • Flexible input โ€” browse by location+category URL or keyword search
  • Pagination โ€” automatically pages through results up to your maxResults limit
  • Structured output โ€” clean JSON ready for CRM import, lead enrichment, or competitive analysis

Use cases

  • Sales prospecting: Find trade shows in your target vertical and reach out to exhibitors or organizers
  • Market intelligence: Track which industries are hosting the most events and where
  • Lead generation: Build lists of events for outreach campaigns
  • Competitive research: Monitor competitor presence at industry conferences
  • Event marketing: Identify speaking and sponsorship opportunities by category
  • Partnership sourcing: Find B2B events to meet potential channel partners
  • Research & journalism: Map the global conference landscape by industry or region

How to scrape 10times.com events

  1. Go to the 10times Trade Shows & Events Scraper page on Apify Store.
  2. Provide one or more Start URLs (10times.com city/category pages in /city-country/industry format), OR enter a Search query.
  3. Set Max results (default 15).
  4. Keep Proxy configuration set to Residential (required to bypass Cloudflare).
  5. Click Start and download your data as JSON, CSV, or Excel.

Input parameters

ParameterTypeDescription
startUrlsArrayList of 10times.com category pages to scrape. Use format: /city-country/industry (e.g. https://10times.com/london-uk/technology)
searchQueryStringKeyword to search on 10times.com. Example: blockchain summit, pharma trade show (requires residential proxies)
maxResultsIntegerMaximum number of events to extract, 1โ€“1000 (default: 15)
proxyConfigurationObjectApify proxy settings. Residential proxies required โ€” 10times.com is Cloudflare-protected
maxRequestRetriesIntegerRetry attempts for failed requests (default: 3)

Output example

{
"name":"London Tech Week",
"url":"https://10times.com/london-technology-week",
"startDate":"2026-06-08",
"endDate":"2026-06-10",
"city":"London",
"state":null,
"country":null,
"venue":null,
"edition":"13th edition",
"attendees":50000,
"exhibitors":300,
"tags":["Tradeshow","IT & Technology"],
"imageUrl":"https://img.10times.com/event/ltw-logo.jpg",
"description":"London Tech Week is the world's largest technology festival, bringing together 50,000+ attendees from 90+ countries...",
"sourceUrl":"https://10times.com/london-uk/technology",
"scrapedAt":"2026-05-10T08:00:00.000Z"
}

Supported URL formats

The actor works with 10times.com location/category listing pages:

  • Location+category pages (recommended): https://10times.com/london-uk/technology, https://10times.com/new-york-us/pharmaceutical, https://10times.com/berlin-de/automotive
  • Search pages: https://10times.com/search?q=blockchain, https://10times.com/search?q=AI+summit (requires residential proxies)
  • Country/industry pages: https://10times.com/usa/healthcare, https://10times.com/uk/finance

Proxy requirements

10times.com is protected by Cloudflare and blocks datacenter IP ranges. Residential proxies are required for reliable access. The actor defaults to Apify's residential proxy group (RESIDENTIAL). Using the actor without residential proxies will result in Cloudflare blocks and empty output.

Cost & pricing

This actor uses pay-per-event pricing:

TierStart feePer event
FREE$0.03$0.004506
BRONZE$0.03$0.003918
SILVER$0.03$0.003056
GOLD$0.03$0.002351
PLATINUM$0.03$0.001567
DIAMOND$0.03$0.001097

The start fee covers Playwright browser startup + Cloudflare bypass overhead (required for 10times.com). A FREE-tier run extracting 100 events costs approximately $0.481 ($0.03 start + 100 ร— $0.004506).

API usage

Use the Apify API to integrate this actor into your workflows.

JavaScript (ApifyClient)

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('automation-lab/10times-events-scraper').call({
startUrls:[{url:'https://10times.com/london-uk/technology'}],
maxResults:50,
proxyConfiguration:{useApifyProxy:true,apifyProxyGroups:['RESIDENTIAL']},
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log('Events:', items);

Python (ApifyClient)

from apify_client import ApifyClient
client = ApifyClient('YOUR_API_TOKEN')
run = client.actor('automation-lab/10times-events-scraper').call(run_input={
'startUrls':[{'url':'https://10times.com/london-uk/technology'}],
'maxResults':50,
'proxyConfiguration':{'useApifyProxy':True,'apifyProxyGroups':['RESIDENTIAL']},
})
items = client.dataset(run['defaultDatasetId']).list_items().items
print(f'Events: {len(items)}')

cURL

curl-X POST \
"https://api.apify.com/v2/acts/automation-lab~10times-events-scraper/runs?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"startUrls": [{"url": "https://10times.com/london-uk/technology"}],
"maxResults": 50,
"proxyConfiguration": {"useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"]}
}'

MCP / AI assistant usage

This actor is accessible via the Apify MCP server. Claude, GPT, and other AI assistants can call it directly when configured with the Apify MCP integration.

Setup with Claude Desktop / Claude Code

Add this specific actor to Claude via the Apify MCP server (HTTP transport):

$claude mcp add--transport http https://mcp.apify.com?tools=automation-lab/10times-events-scraper

Or configure it in Claude Desktop (claude_desktop_config.json):

{
"mcpServers":{
"apify-10times":{
"command":"npx",
"args":["-y","@apify/mcp-server@latest","--tools=automation-lab/10times-events-scraper"],
"env":{
"APIFY_TOKEN":"your-apify-token"
}
}
}
}

For VS Code / Cursor, add to your MCP settings JSON:

{
"mcp":{
"servers":{
"apify-10times":{
"url":"https://mcp.apify.com?tools=automation-lab/10times-events-scraper",
"headers":{"Authorization":"Bearer your-apify-token"}
}
}
}
}

Example prompts

You can ask your AI assistant:

  • "Use the 10times Trade Shows & Events Scraper to find upcoming pharmaceutical trade shows in New York"
  • "Find all technology conferences in London next quarter using 10times scraper"
  • "Get me a list of automotive trade shows in Germany using 10times.com"

Limitations

  • Detailed event pages (description, full organizer contacts, speaker lists) are not scraped โ€” listing-level data only
  • Some events may show limited metadata if 10times.com does not display those fields on the listing page
  • The actor requires residential proxies to bypass Cloudflare protection

FAQ

Q: Why am I getting empty results?
A: Ensure you have residential proxies configured. 10times.com blocks datacenter IPs via Cloudflare. Go to the Proxy configuration input and enable Apify Residential proxy.

Q: What URL format does 10times.com use for category pages?
A: Use the format /city-country/industry, e.g. https://10times.com/london-uk/technology, https://10times.com/new-york-us/pharmaceutical. You can find these URLs by browsing 10times.com and copying the URL from the address bar on a category listing page.

Q: Can I scrape all upcoming events globally?
A: Yes. Use multiple start URLs covering different cities and industries, or use the search feature with searchQuery: "upcoming events".

Q: How much does it cost to scrape 1,000 events?
A: At FREE tier: $0.03 (start) + 1000 ร— $0.004506 = ~$4.536.

Integrations

Connect this actor to your existing tools and automate event intelligence workflows:

  • โ†’ Google Sheets via Apify โ†’ Google Sheets integration: automatically populate a live spreadsheet with trade show data for ongoing event monitoring and team collaboration
  • โ†’ Make / Zapier webhook: trigger a workflow whenever new events are scraped โ€” send Slack alerts, create CRM records, or add events to a project management tool
  • โ†’ CRM import (Salesforce, HubSpot): pipe the JSON output directly into your CRM for sales prospecting โ€” filter by tags (e.g. Tradeshow, IT & Technology) and city to build targeted outreach lists
  • โ†’ Apify Storage โ†’ Snowflake / BigQuery: schedule regular runs and export datasets to your data warehouse for trend analysis across quarters
  • โ†’ Notion / Airtable: use the Apify webhook or Zapier to push each scraped event as a new database record โ€” ideal for event marketing teams tracking sponsorship and speaking opportunities

Related actors

Legality

This actor is intended for legitimate research, sales intelligence, and market analysis use cases. Users are responsible for complying with 10times.com's Terms of Service and applicable laws regarding data collection and use. Do not use extracted data for spam or unsolicited outreach. Scraping publicly available event listings is generally permitted for research and commercial intelligence purposes; consult legal counsel if in doubt about your specific use case.

You might also like

10times Events Scraper โ€” Trade Shows & Conferences

prodiger/tentimes-events-scraper

Scrape trade shows, conferences, exhibitions, and workshops from 10times.com โ€” 59 data points per event including organizer contacts, venue, visitor estimates, exhibitor counts, and schedules. Pay-per-event pricing, ~15% cheaper than competitors. No 10times account required.

10times Events Scraper โ€” Trade Shows & Conferences

khadinakbar/10times-events-scraper

Scrape trade shows, conferences, and exhibitions from 10times.com (200K+ events, 100+ industries). Flat records with ISO dates, venue + GPS, organizer, categories, visitor estimates, and event URL. Three input modes (URLs / search / city). MCP-ready, residential proxy, JSON-LD.

10times Events Scraper - Trade Shows & Conferences API

zen-studio/10times-events-scraper

Extract trade shows, conferences, and exhibitions from 10times.com with 59 data points per event. Filter by city name, industry, date, or keyword. Get organizer contacts, venue details, visitor estimates, exhibitor counts, and full schedules. 1,000 events in under 60 seconds. No account needed.

10times.com Events Scraper

crawlerbros/tentimes-events-scraper

Scrape trade shows, conferences, and workshops from 10times.com. Extract event name, dates, venue, organiser, categories, description, and attendance stats. HTTP-only with hardcoded residential proxy.

12

10times Events Scraper

maximedupre/10times-events-scraper

Scrape public 10times events by search filters or URLs. Export event names, dates, locations, organizers, categories, attendance signals, source links, and scrape metadata.

๐Ÿ‘ User avatar

Maxime Duprรฉ

2

Google Events Scraper

scrapeai/google-events-scraper

Extract structured event data from Google's event listings covering live music, business conferences, trade shows, festivals, networking events, and community gatherings.

EventsEye Trade Shows Scraper

jungle_synthesizer/eventseye-trade-shows-scraper

Scrape international trade shows and exhibitions from EventsEye.com. Extracts show names, dates, venues, organizers, industries, descriptions, audience types, and contact details for B2B event marketing and lead generation.

๐Ÿ‘ User avatar

BowTiedRaccoon

2

Eventseye Trade Shows Scraper

solidcode/eventseye-scraper

[๐Ÿ’ฐ $10 / 1K] Extract trade shows, exhibitions, and conferences from Eventseye.com โ€” dates, venue, organizer, industries, audience, frequency, and full contact details. Browse by country, industry, or city, or paste Eventseye URLs directly.