Discover/Mapyourshow API
live

Mapyourshow APIinfocomm26.mapyourshow.com

Access InfoComm 2026 exhibitor profiles, booth assignments, hall layouts, and product categories via a structured JSON API with 7 endpoints.

Endpoint health
verified 4d ago
get_halls
list_all_exhibitors
search_exhibitors
get_exhibitor_details
get_categories
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

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.

Try it

No input parameters required.

api.parse.bot/scraper/e0ab3ec3-2ea5-465f-a4e8-81be8939f7c9/<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/e0ab3ec3-2ea5-465f-a4e8-81be8939f7c9/get_halls' \
  -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 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)
All endpoints · 7 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
4d ago
Latest check
7/7 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 interactive booth-finder app that maps exhibitors by hall using get_halls and get_hall_exhibitors.
  • Export a full contact list of all InfoComm 2026 vendors — website, phone, address — using list_all_exhibitors plus get_exhibitor_details.
  • Identify competitors or partners exhibiting at InfoComm by running keyword queries through search_exhibitors.
  • Classify exhibitors by product segment using get_categories to group booth_size and location data.
  • Track featured and sponsored exhibitors across years by archiving get_featured_exhibitors responses.
  • Enrich a CRM with trade-show data by bulk-fetching exhibitor website, phone, and social_media fields from get_exhibitor_details.
  • Analyze floor distribution by hall to understand which sectors cluster in which sections of the venue.
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 infocomm26.mapyourshow.com have an official developer API?+
MapYourShow does not publish a public developer API or SDK for third-party access to its exhibitor directory data. This Parse API provides structured access to that data.
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?+
Not currently. 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`?+
Both endpoints use offset-based pagination. Set 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?+
No spatial or coordinate data is exposed. The API covers hall assignments (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.
Page content last updated . Spec covers 7 endpoints from infocomm26.mapyourshow.com.
Related APIs in B2b DirectorySee all →
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.
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.
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.
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.
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.
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.
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.
attend.expowest.com API
Find speaker and exhibitor information from Natural Products Expo West, including names, titles, and company details to research attendees and discover industry contacts. Search and filter through the event directory to identify potential networking opportunities and business partners.