Get Event

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

Last updated

Was this helpful?