10times.com API10times.com ↗
Search conferences, trade shows, and exhibitions on 10times.com. Retrieve event details, dates, venues, and exhibitor lists via 3 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/fe6ec43d-1a57-46d0-b416-2ed5a381659d/search_events?page=2&query=Technology' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for events by keyword. Returns a paginated list of events matching the query with basic info including name, dates, location, description, and categories.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| queryrequired | string | Keyword to search for (e.g. 'Technology', 'Medical'). |
{
"type": "object",
"fields": {
"page": "integer, current page number",
"query": "string, the search query used",
"events": "array of event objects with keys: id, name, url, slug, dates, location, description, categories"
},
"sample": {
"data": {
"page": 1,
"query": "Technology",
"events": [
{
"id": "389585",
"url": "https://10times.com/hr-festival-asia",
"name": "HR Tech Asia (HRTECH)",
"slug": "hr-festival-asia",
"dates": "Mon, 04 - Thu, 07 May 2026",
"location": "Singapore",
"categories": [
"Tradeshow",
"Human Resource Management",
"IT & Technology"
],
"description": "Where bold ideas ignite transformative action."
}
]
},
"status": "success"
}
}About the 10times.com API
The 10times.com API gives developers access to global event data across 3 endpoints, covering searches by keyword, full event detail pages, and exhibitor lists. The search_events endpoint returns paginated results with event IDs, dates, locations, descriptions, and categories. get_event_details and get_event_exhibitors let you drill into a specific event using its slug to retrieve venue info and up to 15 exhibitors with profile URLs.
Searching Events
The search_events endpoint accepts a query string — such as 'Technology' or 'Medical' — and an optional page integer for pagination. Each result in the events array includes a unique id, name, url, slug, dates, location, description, and categories array. The slug field is the key that connects search results to the two detail endpoints.
Event Details
get_event_details takes a slug and returns the full event record: name, url, dates, venue (name and location as a single string), and meta_description, which often contains a summary of attendance figures or industry focus. This endpoint is useful when you need structured venue and scheduling data for a known event.
Exhibitor Data
get_event_exhibitors returns up to 15 exhibitors for a given event slug. Each object in the exhibitors array includes the exhibitor name, a profile_url on 10times.com where available, and a website field for direct company URLs. The count field in the response tells you how many exhibitors were returned. This endpoint is suited for building lead lists, mapping industry participation, or tracking which companies attend recurring events.
Coverage and Scope
10times.com indexes conferences, trade shows, exhibitions, and seminars across industries and regions worldwide. Event coverage spans technology, healthcare, manufacturing, finance, and more. The API does not require you to know an event URL in advance — start with search_events to discover slugs, then pass those slugs to the detail and exhibitor endpoints.
- Build a conference discovery tool filtered by industry keyword using
search_eventscategories and location fields. - Aggregate trade show exhibitor lists for B2B lead generation using
get_event_exhibitorsand the returnedwebsitefield. - Track venue and date changes for recurring events by periodically calling
get_event_detailson known slugs. - Map which companies participate across multiple events by matching exhibitor names from
get_event_exhibitorsresponses. - Populate a CRM with upcoming event data including dates and venues pulled from
search_eventsandget_event_details. - Build an event calendar for a specific vertical (e.g. Medical) by querying
search_eventswith domain-specific keywords.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does 10times.com have an official developer API?+
What does `get_event_exhibitors` return, and is there a limit on exhibitor count?+
name, profile_url on 10times.com, and a website field. The count field in the response reflects the actual number returned. Events with fewer than 15 listed exhibitors will return fewer results.Does pagination work across all three endpoints?+
page parameter is available on search_events only. The get_event_details and get_event_exhibitors endpoints take a single slug and return a fixed-size response — there is no page parameter for those two. If you need to iterate through many events, paginate at the search level and collect slugs.Does the API return speaker or agenda data for events?+
Can I filter `search_events` results by date range or country?+
search_events endpoint accepts only a query keyword and an optional page number. Date range and country filters are not currently supported as input parameters. You can fork this API on Parse and revise it to add those filter parameters to the endpoint.