List Events for a Venue
List events taking place at a venue, with basic venue information and per-event artist lineups. Note: venueInfo is returned as an array of venue records, not a single object.
Path Parameters
- Type: string · venue IDidrequired
Chartmetric venue ID.
Query Parameters
- Type: integerlimitmin:1max:100
Maximum number of events to return. Defaults to 20, max 100.
- Type: integeroffsetmin:0
Number of items to skip from the start of the result set; pair with
limitto paginate.
Responses
- application/json
Request Example for get/api/event/venue/{id}
curl 'https://api.chartmetric.com/api/event/venue/{id}' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"venueInfo": [
{
"doc_id": 1,
"name": "Greek Theatre",
"lat": 37.8726,
"lng": -122.254,
"cm_location": null,
"code2": "US",
"image_url": "https://www.jambase.com/wp-content/uploads/2015/06/greek-1480x832.jpg",
"city_id": 6312,
"capacity": 8500,
"city_name": "Berkeley",
"venue_url": "https://thegreekberkeley.com/"
}
],
"events": [
{
"event_id": 8553348,
"event_name": "Modest Mouse at Greek Theatre",
"event_image_url": "https://www.jambase.com/wp-content/uploads/2019/03/modest-mouse-2019-press-1480x832.jpg",
"start_date": "2016-07-28T00:00:00.000Z",
"end_date": "",
"artists": [
{
"id": 20,
"name": "Modest Mouse",
"is_headliner": null
}
]
}
]
}
}