Venues API

List the venues attached to your organisation's events, with their address and the free-text directions, parking and accessibility notes. Read-only, scoped to your organisation.

A venue is a place your events happen. These endpoints list the venue records attached to your organisation's events. They require the read scope and are scoped to your organisation.

MethodPathReturns
GET/v1/venuesA paginated list of the venues used by your events.
GET/v1/venues/{id}A single venue.

Events that use your organisation's own address (rather than a separate venue record) are not listed here. This endpoint returns the dedicated venue records linked to your events.

List venues

curl "https://developer.seaty.co.uk/v1/venues" \
  -H "Authorization: Bearer sk_live_your_key_here"
FieldTypeDescription
idintegerThe venue id.
namestring | nullThe venue name.
street_addressstring | nullStreet address.
citystring | nullCity or town.
postcodestring | nullPostcode.
descriptionstring | nullFree-text description of the venue.
directionsstring | nullHow to get there.
car_parkingstring | nullParking notes.
accessibilitystring | nullAccessibility notes.

Get one venue

curl "https://developer.seaty.co.uk/v1/venues/204" \
  -H "Authorization: Bearer sk_live_your_key_here"

Returns the same fields as the list. A 404 means the venue is not used by any event in your organisation.

Next

  • Events: the events held at these venues, including their seating plans.

Need help? Email support@seaty.co.uk.