Events & Activities

Events, festivals, and bookable attractions during the stay.

Three endpoints that answer “what’s happening while my guests are here?” — spanning live events (concerts, theatre, sports), curated annual festivals, and pre-bookable tours and experiences.

Endpoints

Difference between events and festivals

EventsFestivals
SourceLive ticketing inventoryInternal curated catalogue
ScopeAnything with a ticketIconic annual cultural celebrations
FreshnessLiveAnnual refresh
CoverageSupported ticketing marketsGlobal, hand-picked

Events tell you Adele is playing 2 nights while your guests are here. Festivals tell you they’ll be arriving mid-Oktoberfest.

Example: full Events & Activities section

const params = new URLSearchParams({ lat, lng, start, end }).toString();
const [events, festivals, attractions] = await Promise.all([
fetch(`/v1/pulse/events?${params}`, { headers }).then(r => r.json()),
fetch(`/v1/pulse/festivals?${params}`, { headers }).then(r => r.json()),
fetch(`/v1/pulse/attractions?lat=${lat}&lng=${lng}`, { headers }).then(r => r.json()),
]);
const totalHits = events.events.length + festivals.festivals.length;

Data sources

Live ticketing data, an affiliate tours-and-experiences network, and an internal curated festivals catalogue (Oktoberfest, Cannes, Diwali, etc.). See Attribution for the full source list.