Mapyourshow APIinfocomm26.mapyourshow.com ↗
Access InfoComm 2026 exhibitor profiles, booth assignments, hall layouts, and product categories via a structured JSON API with 7 endpoints.
What is the Mapyourshow API?
This API exposes 7 endpoints covering the full exhibitor directory at InfoComm 2026, sourced from infocomm26.mapyourshow.com. Use get_exhibitor_details to retrieve a company's address, phone, website, social media links, booth assignments, and product categories in a single call. Other endpoints cover hall layouts, keyword search, featured exhibitors, and paginated listings — enough to build a complete exhibitor discovery or competitive-research tool.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/e0ab3ec3-2ea5-465f-a4e8-81be8939f7c9/get_halls' \ -H 'X-API-Key: $PARSE_API_KEY'
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 infocomm26-mapyourshow-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.infocomm_2026_exhibitor_directory_api import InfoComm, HallId
client = InfoComm()
# List all halls and browse exhibitors in Central Hall
for hall in client.halls.list():
print(hall.hall_id, hall.hall_name, hall.level)
# Get exhibitors in Central Hall using constructible Hall
central = client.hall(hall_id=HallId.CENTRAL_HALL)
for exhibitor in central.exhibitors.list():
print(exhibitor.name, exhibitor.booth, exhibitor.booth_size)
# Search for audio-related exhibitors and get full details
for summary in client.exhibitorsummaries.search(query="audio"):
detail = summary.details()
print(detail.exhibitor_name, detail.city, detail.country, detail.website)
# List featured exhibitors
for featured in client.exhibitorsummaries.featured():
print(featured.exhibitor_id, featured.name, featured.booth)
# List categories
for cat in client.categories.list():
print(cat.id, cat.name)
Returns all exhibition halls at InfoComm 2026 with their IDs and names. Each hall has a hall_id used to query exhibitors by hall via get_hall_exhibitors. The set of halls is small and stable for the event.
No input parameters required.
{
"type": "object",
"fields": {
"items": "array of hall objects each containing hall_id, hall_name, and level"
},
"sample": {
"data": {
"items": [
{
"level": null,
"hall_id": "C",
"hall_name": "Central Hall"
},
{
"level": null,
"hall_id": "E",
"hall_name": "North Hall"
},
{
"level": null,
"hall_id": "B",
"hall_name": "North Hall, 2nd Floor Rooms"
},
{
"level": null,
"hall_id": "A",
"hall_name": "West Hall, Level 2 Rooms"
}
]
},
"status": "success"
}
}About the Mapyourshow API
Hall and Exhibitor Discovery
The get_halls endpoint returns all exhibition halls with their hall_id, hall_name, and level fields. Pass a hall_id value (for example "C", "E", "B", or "A") to get_hall_exhibitors to get every exhibitor in that hall, including their exhibitor_id, name, booth, hall_name, and computed booth_size. This makes it straightforward to enumerate all exhibitors floor-by-floor or to identify the physical footprint of a specific company.
Exhibitor Search and Full Profiles
search_exhibitors accepts a query string for keyword matching against exhibitor names and descriptions, plus size and start integers for pagination. The response includes an items array of exhibitor summaries and a total count of all matching records. list_all_exhibitors is the same interface without a keyword filter — useful when you want the complete directory in pages. Once you have an exhibitor_id from either endpoint, pass it to get_exhibitor_details for the full profile: address, city, state, zip, country, website, phone, fax, social_media, booths, and des (description).
Categories and Featured Exhibitors
get_categories returns every product and service classification used in the show, each with an integer id and a name string. These category values appear in exhibitor profiles and are useful for grouping or filtering results client-side. get_featured_exhibitors returns a curated list of sponsored companies with exhibitor_id, name, booth, and description — useful for identifying key vendors or sponsors without scanning the full directory.
Pagination Notes
Both search_exhibitors and list_all_exhibitors use offset-based pagination via the start and size parameters. The total field in each response tells you how many records match so you can calculate the number of pages needed to retrieve the full dataset.
The Mapyourshow API is a managed, monitored endpoint for infocomm26.mapyourshow.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when infocomm26.mapyourshow.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 infocomm26.mapyourshow.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build an interactive booth-finder app that maps exhibitors by hall using
get_hallsandget_hall_exhibitors. - Export a full contact list of all InfoComm 2026 vendors — website, phone, address — using
list_all_exhibitorsplusget_exhibitor_details. - Identify competitors or partners exhibiting at InfoComm by running keyword queries through
search_exhibitors. - Classify exhibitors by product segment using
get_categoriesto groupbooth_sizeand location data. - Track featured and sponsored exhibitors across years by archiving
get_featured_exhibitorsresponses. - Enrich a CRM with trade-show data by bulk-fetching exhibitor
website,phone, andsocial_mediafields fromget_exhibitor_details. - Analyze floor distribution by hall to understand which sectors cluster in which sections of the venue.
| 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 | 100 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 infocomm26.mapyourshow.com have an official developer API?+
What does `get_exhibitor_details` return beyond the summary endpoints?+
get_exhibitor_details returns the full profile for one exhibitor: address, city, state, zip, country, website, phone, fax, social_media links, all booths assigned to that exhibitor, and a des (description) field. The summary endpoints (search_exhibitors, list_all_exhibitors, get_hall_exhibitors) return only name, booth, and description — the detail endpoint is the source for contact and social data.Can I filter exhibitors by product category directly through the API?+
get_categories returns all category IDs and names, and category data appears in exhibitor profiles from get_exhibitor_details, but no endpoint accepts a category ID as a filter parameter. You can fork this API on Parse and revise it to add a category-filtered exhibitor endpoint.How does pagination work in `search_exhibitors` and `list_all_exhibitors`?+
start to the index of the first record you want and size to the number of records per page. The total field in the response tells you the total number of matching exhibitors, so you can calculate how many pages to request to retrieve the complete set.Does the API cover floor maps, booth coordinates, or visual layout data?+
hall_id, hall_name, level), booth numbers, and computed booth_size, but not x/y coordinates, SVG maps, or floor-plan graphics. You can fork this API on Parse and revise it to add a mapping-oriented endpoint if that geometry is available from the source.