/1.0/venue/{venueId} Resource

GET /1.0/venue/{venueId}

Get a venue by its unique id.

Request Parameters
name type description
venueId path the venue's id
Response Body
media type data type description
application/json venue (JSON) the matching venue
application/xml venue (XML)

Example

Request
GET /1.0/venue/{venueId}
Accept: application/json

              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "city" : {
    "id" : "5357527",
    "name" : "Hollywood",
    "stateCode" : "CA",
    "state" : "California",
    "coords" : {
      "long" : -118.3267434,
      "lat" : 34.0983425
    },
    "country" : {
      "code" : "US",
      "name" : "United States"
    }
  },
  "url" : "https://www.setlist.fm/venue/compaq-center-san-jose-ca-usa-6bd6ca6e.html",
  "id" : "6bd6ca6e",
  "name" : "Compaq Center"
}