cURL
Booking API
List treatments
GET
cURL
Path Parameters
Required string length:
3 - 50Response
200 - undefined
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.vambe.me/api/public/booking-url/{urlName}/treatmentsconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/public/booking-url/{urlName}/treatments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/booking-url/{urlName}/treatments"
response = requests.get(url)
print(response.text)curl --request GET \
--url https://api.vambe.me/api/public/booking-url/{urlName}/treatmentsconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/public/booking-url/{urlName}/treatments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/booking-url/{urlName}/treatments"
response = requests.get(url)
print(response.text)3 - 50Was this page helpful?
