Events
Learn how to search for live events using the SeatGeek API.
Event endpoints are one of the most critical endpoints for the SeatGeek API. They allow us to request any event with tickets available for purchase on the SeatGeek platform. The endpoints for events are as follows:
- The events endpoint: Fetches a paginated list of events using certain search parameters.
- The specific event endpoint: Fetches details about a specific event by providing an event ID as a path parameter.
The events endpoint
To fetch a list of all events, we use the following endpoint URL:
https://api.seatgeek.com/2/events
Request parameters
We can use the following query parameters with the URL given above when fetching a list of events:
Name | Category | Syntax | Description |
ID | optional |
| This parameter fetches specific events using unique event IDs. We can use the All other URL parameters are overridden when using this parameter, and the SeatGeek API ignores them even if they’re passed in the HTTP request. |
Performers | optional |
| This parameter filters the event results according to specific performer parameters. The The We can use a comma-separated list of performer IDs to filter event results based on specific performers. The default value of |
Venue | optional |
| This parameter filters the event results according to specific venue parameters. The venue parameter supports all the URL parameters we use for the |
Datetime | optional |
| This parameter filters the event results according to a specific date and time range. We can use the This parameter accepts the ISO 8601 time string format ( |
Query | optional |
| This parameter performs a broad search for events by looking up all possible sections of the response document. Since this parameter is a broad search, the search results can be unexpected. The default value for this parameter is |
Taxonomies | optional |
| This parameter filters the event results according to specific event types by using taxonomies. The taxonomy parameter supports all the URL parameters we use for the taxonomies endpoint. The |