Get Topsellers

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
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
  }
]

Last updated

Was this helpful?