venue_type):
hotel— a spa inside a hotel. Guests can charge their booking to their room (the room-number field applies).spa— an independent day spa. No room charge.
The Venue object comes in two shapes. The list shape (returned by
GET /v1/venues) carries marketing/contact fields. The detail shape
(returned by GET /v1/venues/{id}) carries scheduling and booking-policy
fields. The two shapes do not currently expose the exact same set of fields.List shape — GET /v1/venues
Stable, opaque identifier (UUID) for the venue.
Human-readable identifier, unique within your organization (kebab-case,
e.g.
akasha-lutetia). Stable: it does not change when the venue is
renamed. Any endpoint that accepts {venue_id} in the URL also accepts the
slug — use whichever you prefer when integrating.Display name in French.
Display name in English.
Long-form description in French.
Long-form description in English.
Street address.
Postal or ZIP code.
City.
ISO 3166-1 alpha-2 country code (e.g.
FR).ISO 4217 currency code for pricing (e.g.
EUR).Whether the venue is a hotel spa or a standalone day spa.
IANA timezone (e.g.
Europe/Paris).Primary image URL.
Cover image URL, suitable for a hero banner.
Detail shape — GET /v1/venues/{id}
Includes id, name, image, cover_image, city, country, currency,
venue_type, description and landing_subtitle, plus the scheduling and
policy fields below.
Lifecycle status (e.g.
active).VAT rate applied to prices, as a percentage (e.g.
20).Daily opening time in
HH:mm:ss, in the venue’s local timezone.Daily closing time in
HH:mm:ss, in the venue’s local timezone.Granularity of bookable slots, in minutes (typically
30).How the venue’s availability is defined (e.g.
recurring).Days the venue operates,
0 (Sunday) … 6 (Saturday).Recurrence interval for the schedule.
First date the recurring schedule applies.
Last date the recurring schedule applies, or
null for open-ended.When
true, the venue currently offers complimentary treatments.Whether slots are temporarily held while a customer completes payment.
How long a slot is held when
booking_hold_enabled is true.Whether bookings outside opening hours are accepted.
Surcharge applied to out-of-hours bookings, as a percentage.
Only venues with
status = 'active' (and in scope for your API key) are
returned by GET /v1/venues. Inactive or archived venues are filtered out
automatically.