Skip to main content

List events

List non-deleted events, sorted by newest event first.

GET https://api-{region}.seatsio.net/events

More info: https://docs.seats.io/docs/api-pagination
Note

The maximum number of events that can be retrieved in a single request is 20.

An example

curl https://api-{region}.seatsio.net/events \
-u aSecretKey:
{
"next_page_starts_after": 122,
"items": [
{
"id": 169,
"key": "anEvent",
"tableBookingConfig": {
"mode": "CUSTOM",
"tables": {
"T1": "BY_TABLE",
"T2": "BY_SEAT",
"T3": "BY_TABLE"
}
},
"chartKey": "4250fffc-e41f-c7cb-986a-2c5e728b8c28",
"isSeason": false,
"isTopLevelSeason": false,
"isPartialSeason": false,
"isEventInSeason": false,
"createdOn": "2017-05-05T10:58:44.715Z"
},
{
"id": 168,
"key": "anotherEvent",
"chartKey": "4150dddc-e41f-c7cb-986a-2c5e728b8c20",
"isSeason": false,
"isTopLevelSeason": false,
"isPartialSeason": false,
"isEventInSeason": false,
"createdOn": "2017-03-05T10:58:44.715Z",
"updatedOn": "2017-04-05T10:58:44.615Z"
}
...
]
}