Discover/10times API
live

10times API10times.com

Search conferences, trade shows, and exhibitions on 10times.com. Retrieve event details, dates, venues, categories, and exhibitor lists via 3 endpoints.

This API takes change requests — .
Endpoint health
verified 4d ago
get_event_exhibitors
search_events
get_event_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
28d ago

What is the 10times API?

The 10times.com API gives developers access to global event data across 3 endpoints, covering keyword search, full event details, and exhibitor listings. The search_events endpoint returns paginated results with fields like dates, location, categories, and a slug that feeds directly into get_event_details and get_event_exhibitors for deeper lookups. It covers conferences, trade shows, and exhibitions worldwide.

Try it
Page number for pagination.
Keyword to search for (e.g. 'Technology', 'Medical', 'Finance').
api.parse.bot/scraper/fe6ec43d-1a57-46d0-b416-2ed5a381659d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/fe6ec43d-1a57-46d0-b416-2ed5a381659d/search_events?page=1&query=Technology' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace 10times-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: 10times SDK — search events, drill into details and exhibitors."""
from parse_apis.ten_times_api import TenTimes, EventNotFound

client = TenTimes()

# Search for technology events, capped at 5 total items
for event in client.events.search(query="Technology", limit=5):
    print(event.name, event.dates, event.location)

# Drill into a single event's full details
event = client.events.search(query="Medical", limit=1).first()
if event:
    detail = client.events.get(slug=event.slug)
    print(detail.name, detail.dates, detail.venue)

    # Walk the event's exhibitors sub-resource
    for exhibitor in event.exhibitors.list(limit=5):
        print(exhibitor.name, exhibitor.profile_url)

# Typed error handling for a non-existent event
try:
    missing = client.events.get(slug="this-event-does-not-exist-xyz")
    print(missing.name)
except EventNotFound as exc:
    print(f"Event not found: {exc.slug}")

print("exercised: events.search / events.get / event.exhibitors.list")
All endpoints · 3 totalmissing one? ·

Full-text keyword search across events on 10times.com. Returns a paginated list of matching events with basic info (name, dates, location, description, categories). Results are ordered by relevance/date. Each event carries a slug usable for drill-down via get_event_details or get_event_exhibitors.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringKeyword to search for (e.g. 'Technology', 'Medical', 'Finance').
Response
{
  "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": "963889",
          "url": "https://10times.com/e1xz-g3k9-k1x4",
          "name": "Mastering Business Data Collection, Analysis and Presentation",
          "slug": "e1xz-g3k9-k1x4",
          "dates": "Mon, 29 Jun - Fri, 03 Jul 2026",
          "location": "Dubai,UAE",
          "categories": [
            "Workshop",
            "IT & Technology"
          ],
          "description": "This training course focuses on effectively using business data..."
        }
      ]
    },
    "status": "success"
  }
}

About the 10times API

Event Search

The search_events endpoint accepts a required query string — such as "Technology", "Medical", or "Finance" — and an optional page integer for pagination. Each item in the returned events array includes an id, name, url, slug, dates, location, description, and categories array. The slug field is the key identifier used to call the other two endpoints.

Event Details

get_event_details takes a single slug parameter and returns a focused record for one event: name, dates, venue, url, and meta_description. The venue field combines the venue name with its location, and meta_description typically contains a concise editorial summary. This endpoint is useful when you already know which event you want and need structured fields without parsing a search result list.

Exhibitor Data

get_event_exhibitors also takes a slug and returns up to 15 exhibitors per event. Each exhibitor object includes a name, an optional profile_url pointing to their 10times profile, and an optional website. The response also returns a count of exhibitors included. This makes it possible to map vendor participation across multiple events by combining slugs from search_events with repeated calls to this endpoint.

Reliability & maintenanceVerified

The 10times API is a managed, monitored endpoint for 10times.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 10times.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official 10times.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build an event discovery feed filtered by industry keyword using search_events categories and location fields.
  • Populate a CRM with venue and date details by calling get_event_details for a tracked list of event slugs.
  • Identify exhibitors at trade shows in a specific sector by querying get_event_exhibitors across search results.
  • Monitor which companies exhibit at recurring annual events by storing and comparing exhibitor lists over time.
  • Generate lead lists by extracting exhibitor website fields from industry-specific conferences.
  • Cross-reference event categories from search_events to classify conferences for a content or news platform.
  • Alert users to upcoming events in their industry by polling search_events with domain-specific queries and checking dates.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does 10times.com have an official developer API?+
10times.com does not publish a publicly documented developer API for general access. Data and developer integrations are not listed on their site as of this writing.
What does `get_event_exhibitors` return, and is there a limit on exhibitor count?+
The endpoint returns up to 15 exhibitors per event, each with a name, an optional profile_url to their 10times profile, and an optional website. The count field in the response tells you how many exhibitors were actually returned for that slug.
Does `search_events` support filtering by date range or country?+
The endpoint currently accepts a query keyword and a page number for pagination. It does not expose dedicated date-range or country filter parameters — filtering happens through the keyword query itself. You can fork this API on Parse and revise it to add location- or date-scoped filtering endpoints.
Is attendee, speaker, or agenda data available?+
Not currently. The API covers event metadata (name, dates, venue, categories, description) and exhibitor lists. Attendee counts, speaker profiles, and session agendas are not returned by any of the three endpoints. You can fork the API on Parse and revise it to add endpoints targeting those data points.
How does pagination work in `search_events`?+
Pass the page integer parameter to move through result pages. The response echoes back the page value alongside the query and the events array, so you can track position in a loop. There is no total-page-count field returned, so iteration needs to stop when the events array comes back empty.
Page content last updated . Spec covers 3 endpoints from 10times.com.
Related APIs in B2b DirectorySee all →
humanitix.com API
Search and discover events on Humanitix, viewing detailed information including dates, times, locations, descriptions, and host names. Filter by keyword, category, price, and date to find events that match your interests.
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
tech-week.com API
Browse and filter Tech Week events by city, day, track, location, time, or keyword to find conferences, talks, and networking opportunities. Retrieve structured event data including titles, dates, venues, hosts, RSVP links, and schedule positions.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
exhibitors.gitex.com API
Search and browse exhibitors participating in GITEX Global 2025 by company profile, technology sector, country, and category to find the vendors and solutions you're looking for. Instantly access detailed information about thousands of exhibitors including their full profiles and industry classifications to discover relevant partners and technologies.
ifa-berlin.com API
Browse exhibitors and event details from IFA Berlin, including paginated listings and specific company information. Discover IFA moments and explore the complete exhibitor directory for the tech conference.
kktix.com API
Search and discover events on KKTIX by category or filters, view detailed event information including tickets and organizer details, and browse featured events and their availability. Access comprehensive event metadata to find exactly what you're looking for across different categories and organizers.