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

List Events

PreviousResourcesNextGet Event

Last updated 1 month ago

Was this helpful?

List events

get

Returns a paginated list of events with optional filters.

Authorizations
Query parameters
pageintegerOptional

Page number (default: 1)

Default: 1
limitinteger ยท max: 100Optional

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

Default: 10
performerstringOptional

Filter by performer slug

marketplaceintegerOptional

Filter by marketplace ID

Responses
200
List of events
application/json
400
Invalid pagination or filter parameters
application/json
get
GET /events HTTP/1.1
Host: api.ticksights.com
Authorization: Bearer JWT
Accept: */*
{
  "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",
      "map": "https://example.com/maps/event2677.png",
      "marketplace": {
        "id": 3,
        "name": "Gigsberg"
      }
    },
    {
      "EventID": 2678,
      "Location": "Noevir Stadium Kobe",
      "Ort": "Kobe",
      "CountryCode": null,
      "Performer": "England",
      "PerformerSlug": "england",
      "Created": "2025-02-07 16:24:37",
      "title": "England vs USA",
      "date": "2019-09-26 19:45:00",
      "last_update": "2025-02-25 09:13:47",
      "image": "https://example.com/images/event2678.jpg",
      "map": "https://example.com/maps/event2678.png",
      "marketplace": {
        "id": 3,
        "name": "Gigsberg"
      }
    }
  ]
}