Search⌘ K
AI Features

Events

Explore how to use SeatGeek API event endpoints to retrieve live event data. Learn to fetch paginated event lists and specific event details by ID using JavaScript. Understand query parameters for filtering by city, taxonomy, and date to access relevant ticketed events.

Overview

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 ...