TickSights
TickSights DashboardsGet TickSights Tool
  • Getting Started
    • Welcome
    • FAQs
    • Changelog
  • TickSights Tool
    • Dashboard
    • Search Events
    • Add New Events
    • Event Detail Page
    • User Settings
    • Favorites
    • Historical Data
    • Calendar
  • Partnerships
    • Stubhub int.
    • Capsolver
  • Others
    • Customized Versions
    • Ticket Tracking Sheet
    • Accounting & Invoices
      • Bayer 04 Invoice
      • Ticketmaster (UK) Invoice
      • Ticketmaster (EU) Rechnung
      • Tickets & Steuern
  • API
    • Introduction
    • Authentication
    • Pagination
    • Resources
      • List Events
      • Get Event
      • Get Event Sales
      • Get Event Average Ticket Price per Block
      • Get Topsellers
Powered by GitBook
On this page

Was this helpful?

  1. API
  2. Resources

Get Event Sales

PreviousGet EventNextGet Event Average Ticket Price per Block

Last updated 1 month ago

Was this helpful?

Get sales for an event

get

Returns a paginated list of sales for a specific event.

Authorizations
Path parameters
idintegerRequired

The ID of the event.

Query parameters
pageintegerOptional

Page number (default: 1)

Default: 1
limitinteger ยท max: 100Optional

Number of sales per page (default: 10, max: 100)

Default: 10
Responses
200
Paginated sales details
application/json
400
Missing event ID or invalid parameters
application/json
404
Event not found
application/json
get
GET /event/{id}/sales HTTP/1.1
Host: api.ticksights.com
Authorization: Bearer JWT
Accept: */*
{
  "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"
    }
  ]
}