Integration catalog
Event discovery platform
Build pages that aggregate events from creator accounts and public event IDs.
Calendar and Widgets
Use Embed API for browser-safe calendars and event cards.
Event detail views
Render detail pages with creator metadata, links, and contributions.
Community intelligence
Analyze attendance patterns using guest lists and user event history.
1) Event discovery by ID
1
Receive or store event IDs
Persist IDs like
evt_abc123 from user submissions or previous sync jobs.2
Fetch event details
Call
GET /api/public/v1/events/{eventId} with x-evento-api-key.3
Render and cache
Cache responses to reduce request volume and improve page speed.
2) Public creator pages
UseGET /api/public/v1/users/{username}/events with type=upcoming and type=past.
3) Browser embeds
Use Embed API for no-auth client rendering:If you need richer metadata (contributions, links, or full creator details), call Public API from your backend.
4) Guest intelligence
CallGET /api/public/v1/events/{eventId}/guests to compute:
- RSVP conversion by status (
yes,maybe,no) - Verification distribution across attendees
- Repeat attendee trends across event IDs
Next steps
Examples
Copy-and-adapt snippets for Node, Python, and browser clients.
Source code patterns
Wrapper-level implementation references used in Evento services.