infocomm26.mapyourshow.com APIinfocomm26.mapyourshow.com ↗
Access InfoComm 2026 exhibitor profiles, booth assignments, hall layouts, and product categories via a structured JSON API with 7 endpoints.
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'
Returns all exhibition halls at InfoComm 2026 with their IDs and names.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of hall objects with hall_id, hall_name, and level",
"status": "string indicating success"
},
"sample": {
"data": [
{
"level": null,
"hall_id": "C",
"hall_name": "Central Hall"
},
{
"level": null,
"hall_id": "E",
"hall_name": "North Hall"
}
],
"status": "success"
}
}About the infocomm26.mapyourshow.com 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.
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.
- 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 | 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 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.