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 Topsellers

PreviousGet Event Average Ticket Price per Block

Last updated 1 month ago

Was this helpful?

Get top sellers

get

Returns a list of events sorted by tickets sold. Use sort to choose between "24h" or "7d" (default "24h").

Authorizations
Query parameters
limitinteger · max: 100Optional

Number of top-seller events to return (default: 10, max: 100)

Default: 10
sortstring · enumOptional

Sort order: '24h' or '7d'. Defaults to '24h'.

Default: 24hPossible values:
Responses
200
List of top-seller events
application/json
400
Invalid parameters
application/json
get
GET /topsellers HTTP/1.1
Host: api.ticksights.com
Authorization: Bearer JWT
Accept: */*
[
  {
    "EventID": 157476339,
    "Location": "Dubai International Cricket Stadium",
    "Ort": "Dubai",
    "CountryCode": "AE",
    "Performer": "India National Cricket Team",
    "PerformerSlug": "india-national-cricket-team",
    "Created": "2025-03-04 16:25:02",
    "title": "India vs Winner of SF2 - Final - ICC Champions Trophy",
    "date": "2025-03-09 10:00:00",
    "last_update": "2025-03-04 16:32:11",
    "image": "https://example.com/images/event157476339.jpg",
    "map": "https://example.com/maps/event157476339.png",
    "marketplace": {
      "id": 1,
      "name": "Viagogo"
    },
    "sold_tickets_24h": 500,
    "sold_tickets_7d": 700
  },
  {
    "EventID": 123456,
    "Location": "Some Stadium",
    "Ort": "City",
    "CountryCode": "DE",
    "Performer": "Some Performer",
    "PerformerSlug": "some-performer",
    "Created": "2025-03-01 12:00:00",
    "title": "Some Event",
    "date": "2025-03-10 20:00:00",
    "last_update": "2025-03-01 12:30:00",
    "image": "https://example.com/images/event123456.jpg",
    "map": "https://example.com/maps/event123456.png",
    "marketplace": {
      "id": 2,
      "name": "Stubhub Int."
    },
    "sold_tickets_24h": 450,
    "sold_tickets_7d": 600
  }
]