Basic Usage

Returns a single event based on the event key.

GET https://api.bigtickets.com/v1/event/{event-key}
GET https://api.bigtickets.com/v1/event/{event-key}?expand=tickets

An Example
Request
curl https://api.bigtickets.com/v1/event/RitxQ0RqOXFBNyt3UUtTMzJoU2c1UT09?expand=tickets -u aSecretKey:
Response Body
{
	"id": "2",
	"key": "RitxQ0RqOXFBNyt3UUtTMzJoU2c1UT09",
	"name": "Comedy Outdoors",
	"isPublished": true,
	"isSeated": true,
	"start": "2023-09-15T19:00:00",
	"end": "",
	"detailUrl": "https://www.bigtickets.com/events/atl-demo/comedy-outdoors-2023/",
	"purchaseUrl": "https://www.bigtickets.com/e/atl-demo/comedy-outdoors-2023/",
	"venue": "Outdoor Park",
	"venueAddress1": "120 Outdoor Park Dr",
	"venueAddress2": "",
	"venueCity": "Atlanta",
	"venueState": "GA",
	"venueZip": "30030",
	"tickets": [
		{
			"id": "3",
			"key": "dzZDSk5acVAzSnF2UjFlcjNIR0ZOUT09",
			"active": true,
			"name": "General Admission",
			"quantity": 500,
			"price": 10.00,
			"entryDateTime": "",
			"itemType": "Seat",
			"itemDesc": "",
			"isGA": false,
			"isBooth": false,
			"section": "Floor"
		}
	]
}
  • start/end: Based on the timezone set in the account expressed as a data and time in ISO 8601 format {YYYY-MM-DDTHH:mm:ss}. (i.e. with an account timezone of Eastern Time, 19:00:00 represents 7:00pm ET)
  • isSeated: When isSeated is true, additional ticket fields isGA, isBooth, and section will be available.
Query Parameters
  • expand (optional)
    The expand query param is a comma delimited list used to retrieve additional data. Currently the only value supported is tickets.