Skip to main content gottem  — one API for every scraper.
Events & Tickets
Verified

10Times Scraper

Extract trade show listings, expo schedules, exhibitor data, and visitor info from 10Times global event directory platform. Built on spider-browser .

Get started Docs
target
10times.com
success rate
99.9%
latency
~4ms
Quick start

Extract data in minutes.

10times-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://10times.com/technology/tradeshows");
await page.content(10000);

const data = await page.extractFields({
  eventName: ".event-card h3 a",
  date: ".event-card .date",
  venue: ".event-card .venue",
  city: ".event-card .city",
  industry: ".event-card .industry-tag",
  visitors: ".event-card .visitor-count",
});

console.log(data);
await spider.close();
ready to run · spider-browser · TypeScript
Fetch API

One endpoint for 10times.com.

Structured JSON from 10times.com with a single POST. AI-resolved selectors, cached on the first call.

POST /fetch/10times.com/
Event nameDate rangeVenueCityIndustryExhibitors
cURL
curl -X POST https://api.spider.cloud/fetch/10times.com/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
Python
import requests

resp = requests.post(
    "https://api.spider.cloud/fetch/10times.com/",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={"return_format": "json"},
)
print(resp.json())
Node.js
const resp = await fetch("https://api.spider.cloud/fetch/10times.com/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data);
Extraction

Fields you can pull.

Event nameDate rangeVenueCityIndustryExhibitorsVisitorsFrequency
Listings

Event discovery

Extract event details, dates, venues, and ticket prices from 10times.com.

Rendering

Dynamic calendars

Handle interactive calendars, date pickers, and map-based event search.

Freshness

Availability tracking

Monitor ticket availability and price changes in real time.

Related

More Events & Tickets scrapers.

Start

Start scraping 10times.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.