Discover/Expo West API
live

Expo West APIattend.expowest.com

Access Natural Products Expo West speaker and exhibitor data via API. Returns names, job titles, organizations, booth numbers, and logos from the event directory.

Endpoint health
verified 6d ago
list_speakers
list_exhibitors
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Expo West API?

This API exposes two endpoints covering the Natural Products Expo West attendee directory at attend.expowest.com: list_speakers and list_exhibitors. Together they return up to seven structured fields per record — including names, job titles, organizations, booth numbers, and photo or logo URLs — giving developers programmatic access to the event's publicly listed participants without manual browsing.

Try it
View ID for the speakers list. Defaults to the canonical public speakers view.
Maximum number of pages to fetch (0 = all pages, 30 items per page).
api.parse.bot/scraper/762e5619-81b4-4dbf-8de2-1ec49eeff59d/<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/762e5619-81b4-4dbf-8de2-1ec49eeff59d/list_speakers?view_id=RXZlbnRWaWV3XzEyMjU1ODI%3D&max_pages=1' \
  -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 attend-expowest-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.

from parse_apis.expo_west_directory_api import ExpoWest, Speaker, Exhibitor

client = ExpoWest()

# List speakers from the Expo West directory
for speaker in client.speakers.list(max_pages=1):
    print(speaker.name, speaker.job_title, speaker.organization)

# List exhibitors from the Expo West directory
for exhibitor in client.exhibitors.list(max_pages=1):
    print(exhibitor.name, exhibitor.booth, exhibitor.logo_url)
All endpoints · 2 totalmissing one? ·

List all speakers/people with their names, job titles, and organizations. Returns 30 items per page and auto-paginates. Each speaker includes identity, role, company, and photo. Use max_pages to cap the fetch depth when you only need a sample.

Input
ParamTypeDescription
view_idstringView ID for the speakers list. Defaults to the canonical public speakers view.
max_pagesintegerMaximum number of pages to fetch (0 = all pages, 30 items per page).
Response
{
  "type": "object",
  "fields": {
    "speakers": "array of speaker objects with id, first_name, last_name, name, job_title, organization, photo_url",
    "total_count": "integer - total number of speakers available",
    "fetched_count": "integer - number of speakers returned in this response"
  },
  "sample": {
    "data": {
      "speakers": [
        {
          "id": "RXZlbnRQZW9wbGVfNDQzODg3MDc=",
          "name": "Matt Landen",
          "job_title": "Senior Vice President, Business Development",
          "last_name": "Landen",
          "photo_url": "https://static.swapcard.com/public/images/acbf66ee9a754bbbb35a91bba357d4ad.jpeg",
          "first_name": "Matt",
          "organization": "Chomps"
        }
      ],
      "total_count": 357,
      "fetched_count": 30
    },
    "status": "success"
  }
}

About the Expo West API

Speaker Data

The list_speakers endpoint returns paginated records of event speakers and featured people. Each speaker object includes id, first_name, last_name, name, job_title, organization, and photo_url. Pages are 30 items each; pass max_pages to cap how many pages are fetched, or set it to 0 to retrieve all available records. The optional view_id parameter lets you target a specific speaker list view if the event publishes more than one.

The response also includes total_count (how many speakers exist in the directory) and fetched_count (how many were returned in the current call), so you can detect truncation and plan follow-up requests accordingly.

Exhibitor Data

The list_exhibitors endpoint returns company-level records from the exhibitor directory. Each exhibitor object carries id, name, description, logo_url, and booth. Pages are 50 items each. You can supply a specific event_id to pin results to a particular Expo West year, or an alternate view_id if the directory exposes more than one exhibitor view. Like the speakers endpoint, it returns total_count and fetched_count for the same pagination-awareness purpose.

Pagination Behavior

Both endpoints handle pagination automatically. Setting max_pages to 0 fetches all available pages in a single API call, which is useful for building a complete local snapshot of the directory. For large directories — Expo West regularly hosts thousands of exhibitors — setting a lower max_pages value reduces latency and credit usage when you only need a sample or the first N records.

Reliability & maintenanceVerified

The Expo West API is a managed, monitored endpoint for attend.expowest.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when attend.expowest.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 attend.expowest.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
6d ago
Latest check
2/2 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 a searchable exhibitor database indexed by booth number and company name for pre-show planning.
  • Enrich a CRM with speaker job titles and organizations pulled from the list_speakers response.
  • Track year-over-year exhibitor participation by comparing name and id fields across event editions.
  • Generate a press contact list of speakers with their organization and photo_url for media kits.
  • Identify natural products brands exhibiting at Expo West by scraping description fields from list_exhibitors.
  • Build a booth-map overlay by correlating exhibitor booth values with a floor plan.
  • Automate outreach lists by exporting speaker name, job_title, and organization to a spreadsheet or sales tool.
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 attend.expowest.com have an official developer API?+
No. attend.expowest.com does not publish a public developer API or documented data access program. This Parse API provides structured access to the publicly listed directory data.
What does `list_exhibitors` return beyond a company name?+
Each exhibitor record includes id, name, description, logo_url, and booth. The description field contains the exhibitor's self-submitted company summary, and booth is the floor location identifier assigned by the event organizer.
Does the API return individual attendee contact details like email addresses or phone numbers?+
No. The directory only surfaces publicly listed fields: names, job titles, organizations, photo URLs, and — for exhibitors — booth numbers and descriptions. Contact details are not part of the public listing and are not exposed by either endpoint. You can fork this API on Parse and revise it to add an endpoint if Expo West ever publishes a contact-detail view.
Can I filter speakers or exhibitors by category, product type, or keyword?+
The current endpoints do not accept filter or search parameters; they return full paginated lists. The API covers retrieval of the complete speaker and exhibitor directories. You can fork this API on Parse and revise it to add a filtered or search-based endpoint if the directory exposes that capability.
How fresh is the data, and does it reflect real-time updates to the directory?+
The data reflects the publicly accessible directory at the time of each API call. The Expo West event directory is updated by the event organizer on an irregular schedule, so newly added or removed speakers and exhibitors will appear once the directory itself is updated. There is no real-time change-stream or delta endpoint.
Page content last updated . Spec covers 2 endpoints from attend.expowest.com.
Related APIs in B2b DirectorySee all →
exhibitors.cphi.com API
Find and explore pharmaceutical exhibitors at CPHI events by searching company names, accessing detailed contact information, employee counts, and company descriptions. Quickly identify potential partners, suppliers, or competitors with comprehensive exhibitor profiles and directory listings.
10times.com API
Search and discover events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.
gulfood.com API
Access the complete Gulfood exhibitor directory, including exhibitor profiles, products, brands, press releases, and exhibition sectors. Filter by country, category, venue, or keyword to find exhibitors and retrieve detailed profiles with stand locations, contact information, and social media links.
exhibitors.gamescom.global API
Search and discover Gamescom 2025 exhibitors by company name or product category, and access detailed information about each exhibitor including their offerings and booth details. Browse the complete exhibitor directory to find specific companies, explore product groups, and learn more about the games and services each participant is showcasing.
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.
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.
mwcbarcelona.com API
Discover and explore MWC Barcelona 2026 exhibitors, speakers, and sessions by searching, filtering, and browsing by category, location, or type. Access detailed information about pavilions, agenda schedules, news updates, and pass options to plan your conference experience.
infocomm26.mapyourshow.com API
Search and discover InfoComm 2026 exhibitors by name, category, or hall location, and access detailed company profiles with booth information. Browse hall layouts, explore featured vendors, and quickly find the products and services you need at the conference.