Last updated 1 month ago
Was this helpful?
Returns a paginated list of sales for a specific event.
The ID of the event.
Page number (default: 1)
1
Number of sales per page (default: 10, max: 100)
10
GET /event/{id}/sales HTTP/1.1 Host: api.ticksights.com Authorization: Bearer JWT Accept: */*
Paginated sales details
{ "total_count": 122, "page": 1, "limit": 10, "sales": [ { "ticket_id": 3468712, "event_id": 157476339, "block": "General East", "row": "", "quantity": 2, "price": 326.64, "currency": "EUR", "date": "2025-03-04 16:43:24" }, { "ticket_id": 3468722, "event_id": 157476339, "block": "General West", "row": "", "quantity": 2, "price": 326.64, "currency": "EUR", "date": "2025-03-04 16:44:58" } ] }