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

PreviousList EventsNextGet Event Sales

Last updated 1 month ago

Was this helpful?

Get event by ID

get

Returns a single event by its ID with stock, sales info, an image, and a seating map.

Authorizations
Path parameters
idintegerRequired

The ID of the event.

Responses
200
Event details
application/json
400
Missing or invalid event ID
application/json
404
Event not found
application/json
get
GET /event/{id} 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"
  },
  "stock": {
    "tickets": 1438,
    "stock_date": "2025-03-05 19:22:34"
  },
  "sales": {
    "sold_tickets_total": 289,
    "sold_tickets_24h": 257,
    "sold_tickets_7d": 289,
    "average_ticket_price": {
      "price": 435.4,
      "currency": "EUR"
    }
  }
}