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
  • Response Format
  • Example Response

Was this helpful?

  1. API

Pagination

For endpoints that return lists (such as events or sales records), the Sales Tracker API implements pagination to manage large result sets and improve performance.

Pagination Parameters

  • page: The page number to retrieve. If not provided, the default value is 1.

  • limit: The number of records to return per page. The default is 10, with a maximum value of 100.

Response Format

Paginated responses include the following metadata:

  • total_count: The total number of records available.

  • page: The current page number.

  • limit: The number of records returned per page.

  • results: An array containing the records for the requested page.

Example Response

{
  "total_count": 37921,
  "page": 1,
  "limit": 100,
  "events": [
    {
      "EventID": 2677,
      "Location": "Yokohama International Stadium",
      "Ort": "Yokohama city",
      "CountryCode": null,
      "Performer": "England",
      "PerformerSlug": "england",
      "Created": "2025-02-07 16:24:37",
      "title": "Rugby World Cup 2019 - Final",
      "date": "2019-11-02 18:00:00",
      "last_update": "2025-02-25 09:13:47",
      "image": "https://example.com/images/event2677.jpg",
      "marketplace": {
        "id": 3,
        "name": "Gigsberg"
      }
    }
    // ... more events
  ]
}

Clients can adjust the page and limit parameters to navigate through the full dataset.

PreviousAuthenticationNextResources

Last updated 9 hours ago

Was this helpful?