Actions11
- Event Actions
- Order Actions
- Organization Actions
- User Actions
- Venue Actions
Overview
This node interacts with the Eventbrite API to list events associated with a specific venue. It is useful when you want to retrieve all events happening at a particular venue, for example, to display upcoming concerts, conferences, or other gatherings hosted there.
Practical scenarios include:
- Event organizers wanting to see all scheduled events at their venue.
- Marketing teams aggregating event data by location.
- Applications that provide users with event listings filtered by venue.
The node fetches event data from Eventbrite based on the provided Venue ID and supports limiting the number of results returned. Additionally, it can optimize output formatting for AI agents by providing simplified and structured summaries.
Properties
| Name | Meaning |
|---|---|
| Venue ID | The unique identifier of the venue for which to list events. |
| Additional Fields | A collection of optional parameters: |
| - Max Results | Maximum number of events to return (between 1 and 50). Defaults to 10. |
| - AI Agent Mode | Whether to format the output optimized for AI agents (simplified and structured). Defaults to false. |
| - Include Summary | When AI Agent Mode is enabled, whether to include a human-readable summary of the results. Defaults to true. |
Output
The node outputs an array of event objects related to the specified venue. Each event object includes detailed information such as:
id: Event identifiername: Event name (text or HTML)description: Event description (text or HTML)url: URL to the event pagestartandend: Start and end date/time detailscreated,changed: Timestamps for creation and last modificationcapacity: Maximum attendance capacitystatus: Current status of the eventcurrency: Currency code used for the eventonline_event: Boolean indicating if the event is onlineorganization_id,organizer_id,venue_id: Related entity IDscategory_id,subcategory_id,format_id: Classification identifiersis_series,is_free,version: Flags about event series, free status, and versioningsummary: Short summary textlogo_id: Identifier for the event logolocale: Locale setting- Other flags related to privacy, inventory, and display options
- Nested
venueobject with venue details like id, name, address, latitude, and longitude (if available)
If no events are found, the output will contain a message indicating "No results found".
When AI Agent Mode is enabled, the output can also include a simplified summary string describing the results in a human-readable format, along with metadata such as total results count and timestamp.
Dependencies
- Requires an API key credential for authenticating with the Eventbrite API.
- Uses HTTP requests to the Eventbrite API endpoint
https://www.eventbriteapi.com/v3. - The node expects proper configuration of this API key within n8n credentials.
Troubleshooting
Common issues:
- Invalid or missing Venue ID will cause the API request to fail.
- API authentication errors if the API key is invalid or expired.
- Rate limiting by Eventbrite API if too many requests are made in a short time.
- Network connectivity problems affecting API calls.
Error messages:
- Errors from the Eventbrite API are propagated and may include messages like "Failed to fetch events" or authorization errors.
- If the node encounters an error and "Continue On Fail" is disabled, execution stops with an error.
- Enabling "Continue On Fail" allows processing subsequent items even if one fails, returning error details in the output.
Resolutions:
- Verify the Venue ID is correct and exists in Eventbrite.
- Ensure the API key credential is valid and has necessary permissions.
- Handle rate limits by adding delays or reducing request frequency.
- Check network connectivity and proxy settings if applicable.