Events / Show
Name | Events / Show |
---|---|
Description | Display details about a specified Event. |
Type | GET |
URL | /v9/events/:event_id |
API|User | |
N/A |
Long Description
Display details about a specified Event.
NOTE: The seating_chart
image URLs within the configuration
object are deprecated and no longer updated. Instead, you should use our dynamic seating charts.
Parameters
Name | Description | Type | Presence | Location |
---|---|---|---|---|
| The ID of the specific Event | Integer | Required | URI |
Properties
Property | Description | Type |
---|---|---|
| The Category of the event | Object |
| The Configuration of the Venue for the event | Object |
| The ID of the Event | Integer |
| A general scoring of the popularity of this event over time | Decimal |
| The name of the event | String |
| Notes regarding the event. These should be shown to the customer as they may include important information such as requirements for entry. | String|null |
| The date and time of the event in the time zone where the vent takes place. Events with a TBA time will have The | String |
| The date and time of the event with the proper time zone offset. | String |
| An array of the Performers which are scheduled to appear at the event. One of the Performers will have | Array |
| A general scoring of the popularity of this event | Decimal |
| Text that identifies any sort of special promotion for the event such as “Randy Johnson Bobblehead Night” | String|null |
| An object indicating legal requirements for displaying certain ticket information in the location in which the event is being held. If If If | Object |
| The status of the event.
| String |
| Indicates whether the event date/time is | Boolean |
| Timestamp of when this Event was last updated. | String |
| The relative API URL of the Event | String |
| The Venue at which the Event takes place | Object |
Deprecated Properties
The response includes some legacy properties that should be ignored including
available_count
(Use Events / Stats to get accurate ticket group information)configuration.seating_chart
meta
owned_by_office
products_count
(Use Events / Stats to get accurate ticket group information)products_eticket_count
(Use Events / Stats to get accurate ticket group information)stubhub_id
Examples
Request | Response |
---|---|
| {
"available_count": 397,
"category": {
"id": "57",
"name": "Rock & Pop",
"parent": {
"id": "54",
"name": "Concerts",
"parent": null,
"slug": "concerts",
"slug_url": "/categories/concerts",
"url": "/categories/54"
},
"slug": "rock-pop",
"slug_url": "/categories/rock-pop",
"url": "/categories/57"
},
"configuration": {
"id": 14341,
"name": "End Stage",
"url": "/configurations/14341"
},
"discount_magnitude": 0,
"id": 2659875,
"long_term_popularity_score": 0.1,
"name": "David Gilmour",
"notes": "",
"occurs_at": "2024-11-10T19:30:00Z",
"occurs_at_local": "2024-11-10T19:30:00-05:00",
"owned_by_office": false,
"performances": [
{
"performer": {
"id": 2940,
"name": "David Gilmour",
"slug": "david-gilmour",
"slug_url": "/performers/david-gilmour",
"url": "/performers/2940"
},
"primary": true
}
],
"popularity_score": 0,
"products_count": 400,
"promotion_label": "",
"requirements": {
"face_value_display": true,
"inclusive_pricing": true,
"seat_number_display": false
},
"state": "shown",
"updated_at": "2024-05-17T23:33:19Z",
"url": "/events/2659875",
"venue": {
"address": {
"country_code": "US",
"created_at": "2012-04-12T03:35:33Z",
"extended_address": "",
"label": null,
"latitude": 40.750414267338,
"locality": "New York",
"location": "New York, NY",
"longitude": -73.9934373661316,
"postal_code": "10001",
"region": "NY",
"street_address": "4 Pennsylvania Plaza"
},
"id": 896,
"location": "New York, NY",
"name": "Madison Square Garden",
"slug": "madison-square-garden",
"slug_url": "/venues/madison-square-garden",
"time_zone": "America/New_York",
"url": "/venues/896"
}
} |