Skip to content

Retrieve event venue details

Request

Retrieve the details of the specified event venue.

Security
SessionKey(Required scopes: customeradministrator)
Path
venueintegerrequired

Unique identifier of the requested event venue

curl -i -X GET \
  'https://docs.ticketingevents.com/_mock/openapi/venues/{venue}' \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Details of the requested event venue were successfully retrieved.

Bodyapplication/json
selfstring

URI of the venue resource

namestring

Name of the event venue

regionobject(response-6)

URI of the region resource related to this venue

latitudenumber, (float)

Global latitude of the event venue's location

longitudenumber, (float)

Global longitude of the event venue's location

addressstring

Text representation of the event venue's address

mapstring, (uri)

URI to a static Google Maps image of the event venue's location

Response
{ "self": "/venues/16878146473429", "name": "Vought Tower", "region": { "self": "/regions/19290238432215", "name": "Antigua and Barbuda", "country": "Antigua and Barbuda", "district": "", "city": "", "icon": "https://restfulcountries.com/assets/images/flags/Antigua-And-Barbuda.png" }, "longitude": -73.99214, "latitude": 40.75518, "address": "7th Ave, Manhattan, New York", "map": "https://maps.googleapis.com/maps/api/staticmap?center=40.75518,-73.99214&zoom=15&size=600x300&maptype=roadmap&markers=color:red%7C40.75518,-73.99214&key=AIzaSyCyLy8bOLUTLbQLVQFwf1eVO2UIVO8_4kQ&signature=IowClV__Bha7DFVe7TIG-osgyDE=" }