The trade show world map data is available as JSON format for analysis, integrations, and applications.
The data is structured as an array of show objects.
File: data/b2b_shows.json
Direct URL: https://lensmorofficial.github.io/trade-show-world-map/data/b2b_shows.json
Sample structure:
[
{
"name": "MEDICA",
"website": "https://www.medica.de",
"city": "Düsseldorf",
"country": "Germany",
"venue": "Messe Düsseldorf",
"start_date": "2026-11-16",
"end_date": "2026-11-19",
"frequency": "Annual",
"industry": "Healthcare & Medical",
"region": "Europe",
"tier": 1,
"lat": 51.2615,
"lng": 6.7602
}
]Note: The JSON file contains an array of show objects (not wrapped in a shows key).
| Field | Description |
|---|---|
| name | Official show name |
| website | Official website URL |
| city | Host city |
| country | Host country |
| venue | Exhibition venue |
| start_date | Start date (YYYY-MM-DD) |
| end_date | End date (YYYY-MM-DD) |
| frequency | Annual / Biennial / Triennial |
| industry | Industry category |
| region | Geographic region |
| tier | 1=Global flagship, 2=Regional leader, 3=Specialized |
| lat | Latitude |
| lng | Longitude |
fetch('https://lensmorofficial.github.io/trade-show-world-map/data/b2b_shows.json')
.then(r => r.json())
.then(shows => {
const healthcareShows = shows.filter(s =>
s.industry === 'Healthcare & Medical' && s.tier === 1
);
console.log(healthcareShows);
});fetch('https://lensmorofficial.github.io/trade-show-world-map/data/b2b_shows.json')
.then(r => r.json())
.then(shows => {
const q2Shows = shows.filter(s => {
const date = new Date(s.start_date);
return date >= new Date('2026-04-01') && date <= new Date('2026-06-30');
});
console.log(q2Shows);
});The show data is licensed under CC BY 4.0.
You are free to:
- Use the data for any purpose, including commercial use
- Modify and build upon the data
- Distribute the data
Requirement:
- Attribution to Lensmor with a link to https://www.lensmor.com
Example attribution:
Trade show data provided by Lensmor under CC BY 4.0.
- Update frequency: Monthly
- Last updated: See commit history
- Verification method: Official show websites and verified industry sources
Found a show that's missing? See CONTRIBUTING.md for how to add new shows or update existing entries.
Common ways teams use this data:
- Annual planning: Import into spreadsheets for show selection scoring
- CRM integration: Enrich account records with upcoming relevant shows
- Marketing automation: Trigger campaigns based on show proximity
- Sales intelligence: Alert reps when target accounts are exhibiting
- Competitive monitoring: Track which shows competitors are attending
For data corrections, additions, or questions:
- Open an issue: https://github.com/LensmorOfficial/trade-show-world-map/issues
- Email: hello@lensmor.com