Skip to main content

Summary event reports

Summary reports are a summarised version of the detailed event reports. They indicate how many objects are in a certain status, category or section.

They also allow you to drill down into the numbers: how many booked seats are there in category A? how many free seats are left in section B?

caution

If your account was created before July 12th 2022, the summary reports count tables that are bookable as a whole as 1 object. So if your event has 5 tables that are bookable as a whole, their count in the reports is 5.

For newer accounts, the reports contain the sum of the seats at the tables. 5 tables of 6 seats count as 30. Get in touch if you would like to enable that behaviour on an old account.

Summary report by availability reason

This report allows you to figure out how many objects are still available, and how many are not - including the reason why they're not available.

That reason can be:

  • available (object is available, i.e. it's selectable for ticket buyers)
  • booked (object is booked)
  • reservedByToken (object is held)
  • a custom status (object is assigned a custom status)
  • not_for_sale (object is marked as not for sale)

Objects that have a non-free status AND are marked as not for sale get that custom status as availability reason (instead of not_for_sale).

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/byAvailabilityReason/summary
curl https://api-{region}.seatsio.net/reports/events/event34/byAvailabilityReason/summary -u aSecretKey: 
{
"available": {
"count": 34,
"bySection": {
"Floor": 12,
"Balcony": 22
},
"byCategoryLabel": {
"premium": 10,
"standard": 24
},
"byCategoryKey": {
"1": 10,
"2": 24
},
"byStatus": {
"free": 34
},
"byChannel": {
"NO_CHANNEL": 34
},
"byAvailability": {
"available": 34
}
},
"booked": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byStatus": {
"booked": 80
},
"byChannel": {
"NO_CHANNEL": 80
},
"byAvailability": {
"not_available": 80
}
},
"reservedByToken": {
"count": 0,
"bySection": {},
"byCategoryLabel": {},
"byCategoryKey": {},
"byStatus": {},
"byChannel": {},
"byAvailability": {}
},
"not_for_sale": {
"count": 0,
"bySection": {},
"byCategoryLabel": {},
"byCategoryKey": {},
"byStatus": {},
"byChannel": {},
"byAvailability": {}
}
}

Summary report by availability

This report allows you to distinguish between available and non-available objects. An object is considered available if:

  • its status equals 'free'
  • it's for sale

Available objects can be found under the available key, non-available objects under not_available.

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/byAvailability/summary
curl https://api-{region}.seatsio.net/reports/events/event34/byAvailability/summary -u aSecretKey: 
{
"available": {
"count": 34,
"bySection": {
"Floor": 12,
"Balcony": 22
},
"byCategoryLabel": {
"premium": 10,
"standard": 24
},
"byCategoryKey": {
"1": 10,
"2": 24
},
"byStatus": {
"free": 34
},
"byChannel": {
"NO_CHANNEL": 34
}
},
"not_available": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byStatus": {
"booked": 80
},
"byChannel": {
"NO_CHANNEL": 80
}
}
}

Summary report by status

info

Most likely you'll want to use the summary report by availability reason instead of the one by status.

The availability reason gives detailed info on why an object is not available: either because it has a non-free status, or because it's not for sale. In the report by status, objects that are not for sale are considered free (since technically that is their status).

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/byStatus/summary
curl https://api-{region}.seatsio.net/reports/events/event34/byStatus/summary -u aSecretKey: 

Example response

{
"booked": {
"count": 34,
"bySection": {
"Floor": 12,
"Balcony": 22
},
"byCategoryLabel": {
"premium": 10,
"standard": 24
},
"byCategoryKey": {
"1": 10,
"2": 24
},
"byAvailability": {
"not_available": 34
},
"byChannel": {
"NO_CHANNEL": 34
}
},
"free": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byAvailability": {
"available": 80
},
"byChannel": {
"NO_CHANNEL": 80
}
}
}

Summary report by category label

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/byCategoryLabel/summary
curl https://api-{region}.seatsio.net/reports/events/event34/byCategoryLabel/summary -u aSecretKey: 
{
"premium": {
"count": 34,
"bySection": {
"Floor": 12,
"Balcony": 22
},
"byStatus": {
"free": 10,
"booked": 24
},
"byAvailability": {
"available": 10
"not_available": 24
},
"byChannel": {
"NO_CHANNEL": 34
}
},
"standard": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byStatus": {
"free": 2,
"booked": 78
},
"byAvailability": {
"available": 2
"not_available": 78
},
"byChannel": {
"NO_CHANNEL": 80
}
},
"NO_CATEGORY": {
"count": 0,
"bySection": {},
"byStatus": {},
"byAvailability": {},
"byChannel": {}
}
}

Summary report by category key

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/byCategoryKey/summary
curl https://api-{region}.seatsio.net/reports/events/event34/byCategoryKey/summary -u aSecretKey: 
{
"1": {
"count": 34,
"bySection": {
"Floor": 12,
"Balcony": 22
},
"byStatus": {
"free": 10,
"booked": 24
},
"byAvailability": {
"available": 10,
"not_available": 24
},
"byChannel": {
"NO_CHANNEL": 34
}
},
"2": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byStatus": {
"free": 2,
"booked": 78
},
"byAvailability": {
"available": 2,
"not_available": 78
},
"byChannel": {
"NO_CHANNEL": 80
}
},
"NO_CATEGORY": {
"count": 0,
"bySection": {},
"byStatus": {},
"byChannel": {}
}
}

Summary report by section

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/bySection/summary
curl https://api-{region}.seatsio.net/reports/events/event34/bySection/summary -u aSecretKey: 
{
"Floor": {
"count": 34,
"byStatus": {
"booked": 12,
"free": 22
},
"byCategoryLabel": {
"premium": 10,
"standard": 24
},
"byCategoryKey": {
"1": 10,
"2": 24
},
"byAvailability": {
"available": 22,
"not_available": 12
},
"byChannel": {
"NO_CHANNEL": 34
}
},
"Balcony": {
"count": 80,
"byStatus": {
"free": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byAvailability": {
"available": 80
},
"byChannel": {
"NO_CHANNEL": 80
}
},
"NO_SECTION": {
"count": 0,
"byStatus": {},
"byCategoryLabel": {},
"byCategoryKey": {},
"byChannel": {}
}
}

Summary report by channel

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/byChannel/summary
curl https://api-{region}.seatsio.net/reports/events/event34/byChannel/summary -u aSecretKey: 
{
"channel1": {
"count": 34,
"byStatus": {
"booked": 12,
"free": 22
},
"byCategoryLabel": {
"premium": 10,
"standard": 24
},
"byCategoryKey": {
"1": 10,
"2": 24
},
"byAvailability": {
"available": 22,
"not_available": 12
}
},
"channel2": {
"count": 80,
"byStatus": {
"free": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byAvailability": {
"available": 80
}
},
"NO_CHANNEL": {
"count": 0,
"byStatus": {},
"byCategoryLabel": {},
"byCategoryKey": {}
}
}

Summary report by object type

GET https://api-{region}.seatsio.net/reports/events/{eventKey}/byObjectType/summary
curl https://api-{region}.seatsio.net/reports/events/event34/byObjectType/summary -u aSecretKey: 

Example response

{
"seat": {
"count": 34,
"bySection": {
"Floor": 12,
"Balcony": 22
},
"byCategoryLabel": {
"premium": 10,
"standard": 24
},
"byCategoryKey": {
"1": 10,
"2": 24
},
"byAvailability": {
"not_available": 34
},
"byChannel": {
"NO_CHANNEL": 34
},
"byStatus": {
"free": 34
}
},
"generalAdmission": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byAvailability": {
"available": 80
},
"byChannel": {
"NO_CHANNEL": 80
},
"byStatus": {
"free": 80
}
},
"booth": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byAvailability": {
"available": 80
},
"byChannel": {
"NO_CHANNEL": 80
},
"byStatus": {
"free": 80
}
},
"table": {
"count": 80,
"bySection": {
"Balcony": 80
},
"byCategoryLabel": {
"premium": 2,
"standard": 78
},
"byCategoryKey": {
"1": 2,
"2": 78
},
"byAvailability": {
"available": 80
},
"byChannel": {
"NO_CHANNEL": 80
},
"byStatus": {
"free": 80
}
}
}