Do you sell tickets for an event, performance or venue?
Find out more about Eventfinda Ticketing.

You're viewing documentation for a legacy API

Venues are a sub-set of locations. In addition to the API methods provided by the Locations module, the following methods are also available. Note that all of the returned venue detail fields are optional, and will be displayed according to availability of the data. Applications should check for the presence of each tag before attempting to read the value.

List Venues

/venues/list/id/{$id}

Returns the venues in the location specified by the numeric ID {$id}. List all venues in alphabetical order.

Request

/venues/list/id/148

Response

<locations>
  […]
  <location id="904" slug="spark-arena-auckland" parent_id="148" type="venue">
    <name>Spark Arena</name>
    <address>34 Mahuhu Crescent</address>
    <phone>(09) 358 1250</phone>
    <website_url>https://www.sparkarena.co.nz/</website_url>
    <email>info@sparkarena.co.nz</email>
    <image_url>https://https://cdn.eventfinda.sg/uploads/venues/500/900-7184.jpg</image_url>
    <lat>-36.8472</lat>
    <long>174.7773</long>
    <description>
      A world class, indoor, multi-purpose, all weather arena.
      […]
    </description>
  </location>
  […]
</locations>

Get Venue By Id

/venue/get/id/{$id}

Return the venue specified by the numeric ID {$id}.

Request

/venues/get/id/904

Response

<location id="904" slug="spark-arena-auckland" parent_id="148" type="venue">
  <name>Spark Arena</name>
  <address>34 Mahuhu Crescent</address>
  <phone>(09) 358 1250</phone>
  <website_url>https://www.sparkarena.co.nz/</website_url>
  <email>info@sparkarena.co.nz</email>
  <image_url>https://https://cdn.eventfinda.sg/uploads/venues/500/900-7184.jpg</image_url>
  <lat>-36.8472</lat>
  <long>174.7773</long>
  <description>
    A world class, indoor, multi-purpose, all weather arena.
    […]
  </description>
<location>

Get Venue By Slug

/venues/get/slug/{$slug}

Return the venue specified by the alphanumeric URL Slug {$slug}.

Request

/venues/get/slug/vector-arena

Response

<location id="904" slug="spark-arena-auckland" parent_id="148" type="venue">
  <name>Spark Arena</name>
  <address>34 Mahuhu Crescent</address>
  <phone>(09) 358 1250</phone>
  <website_url>https://www.sparkarena.co.nz/</website_url>
  <email>info@sparkarena.co.nz</email>
  <lat>-36.8472</lat>
  <long>174.7773</long>
  <description>
    A world class, indoor, multi-purpose, all weather arena.
    […]
  </description>
<location>