mwcbarcelona.com APImwcbarcelona.com ↗
Access MWC Barcelona exhibitor listings, agenda sessions, speakers, pavilions, and news via a structured API with 13 endpoints covering the full event directory.
curl -X GET 'https://api.parse.bot/scraper/62ac8fa5-40f1-4abf-95c5-a6fcc506c793/get_exhibitors_page?page=0&hits_per_page=10' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch a paginated page of exhibitors from the MWC Barcelona exhibitor list. Returns exhibitor records with name, stands, interests, country, and building information.
| Param | Type | Description |
|---|---|---|
| page | integer | Page index (0-based). |
| hits_per_page | integer | Number of results per page. |
{
"type": "object",
"fields": {
"hits": "array of exhibitor objects with name, stands, interests, country, building, objectID",
"page": "integer, current page index",
"nbHits": "integer, total number of matching exhibitors",
"nbPages": "integer, total number of pages",
"hitsPerPage": "integer, results per page"
},
"sample": {
"data": {
"hits": [
{
"name": "Call.io",
"type": "Exhibitor",
"letter": "C",
"stands": [
"Hall 6 Stand 6E71"
],
"country": "PORTUGAL",
"building": [
"Hall 6"
],
"objectID": "33712",
"interests": [
"ARTIFICIAL INTELLIGENCE"
],
"externalId": 33712
}
],
"page": 0,
"nbHits": 2877,
"nbPages": 58,
"hitsPerPage": 50
},
"status": "success"
}
}About the mwcbarcelona.com API
The MWC Barcelona API exposes 13 endpoints covering the full event directory at mwcbarcelona.com, including exhibitor search, filtering, and detail retrieval. The get_exhibitor_detail endpoint returns name, stand locations, description, and the exhibitor's external website URL. Other endpoints cover conference agenda sessions, speakers, pavilions grouped by country, and news articles from both the MWC editorial feed and a press release source.
Exhibitor Data
The exhibitor endpoints let you page through the full list, search by keyword, or filter by building, type badge, product category, or alphabetical index. get_exhibitors_page returns hits arrays with name, stands, interests, country, building, and objectID fields per record. filter_exhibitors_by_building accepts verified hall names such as 'Hall 2' or 'Hall 8.1 - 4YFN', while filter_exhibitors_by_type accepts 'Featured', 'Startup', or 'GSMA Member'. filter_exhibitors_by_product_category matches against the interests field using uppercase strings like 'ARTIFICIAL INTELLIGENCE' or '5G / 6G'.
Exhibitor Detail and Bulk Fetch
get_exhibitor_detail requires both an id (numeric string) and a slug and returns a richer record that adds description and website_url fields not present in the list endpoints. get_all_exhibitors iterates pages automatically and accepts a max_pages parameter to cap the fetch; each page holds up to 100 records. The response includes total, exhibitors, and pages_fetched so callers can confirm how much of the directory was retrieved.
Agenda, Speakers, and Pavilions
get_agenda_sessions returns session objects with title, date, speakers, companies, stage, and description, paginated with nbHits and nbPages. get_speakers and get_pavilions follow the same pagination pattern. Pavilion records include name, country, stands, and building, making it possible to map national pavilion groupings across the venue.
News
get_news_articles supports two sources via the source parameter. Setting source to 'algolia' returns paginated hits with title, content, image, and published date fields. Setting it to 'vporoom' returns a release array of press release objects with headline, summary, and url. The two sources return different response schemas, so callers should branch on the value passed.
- Build an interactive exhibitor directory filtered by hall or product category for conference attendees.
- Aggregate exhibitor website URLs using
get_exhibitor_detailto enrich a CRM or lead list. - Map the show floor by grouping exhibitors via the
buildingfield returned byfilter_exhibitors_by_building. - Track which companies are presenting at specific agenda sessions using
get_agenda_sessionscompaniesandstagefields. - Compile a speaker list with associated sessions for a conference guide app.
- Monitor MWC press releases in real time by polling
get_news_articleswithsource='vporoom'. - Identify startup and GSMA member exhibitors for targeted outreach using
filter_exhibitors_by_type.
| 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 MWC Barcelona have an official developer API?+
What does `get_exhibitor_detail` return that the list endpoints do not?+
get_exhibitor_detail adds description and website_url fields to the base record. The paginated list endpoints (get_exhibitors_page, get_all_exhibitors) return name, stands, interests, country, building, and objectID but do not include the exhibitor's description or external website link.How does `get_all_exhibitors` handle large directories without timing out?+
max_pages integer parameter that caps how many pages are fetched. Each page holds up to 100 exhibitor records. The response includes pages_fetched so you can tell whether the full directory was retrieved or the cap was hit.Can I retrieve individual exhibitor contact details such as email addresses or phone numbers?+
get_exhibitor_detail, which returns name, stands, description, and website_url. Contact details are not exposed. You can fork this API on Parse and revise it to add an endpoint that extracts contact information if it appears on the detail page.